Skip to content

Commit

Permalink
Correct internal compiler flagging (#98)
Browse files Browse the repository at this point in the history
BUG=#94
  • Loading branch information
mansnils authored Jan 19, 2024
1 parent 90ffad8 commit 3b4e406
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Include/Internal/arm_nn_compiler.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* SPDX-FileCopyrightText: Copyright 2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
* SPDX-FileCopyrightText: Copyright 2023-2024 Arm Limited and/or its affiliates <open-source-office@arm.com>
*
* SPDX-License-Identifier: Apache-2.0
*
Expand All @@ -21,8 +21,8 @@
* Title: arm_nn_compiler.h
* Description: Generic compiler header
*
* $Date: 15 August 2023
* $Revision: V.1.2.1
* $Date: 16 January 2024
* $Revision: V.1.2.2
*
* Target : Arm(R) M-Profile Architecture
* -------------------------------------------------------------------- */
Expand Down Expand Up @@ -130,7 +130,7 @@
#endif
#endif

#if ((__ARM_FEATURE_MVE & 3) == 3) || (__ARM_FEATURE_MVE & 1)
#if defined(__ARM_FEATURE_MVE) && ((__ARM_FEATURE_MVE & 3) == 3) || (__ARM_FEATURE_MVE & 1)
#include <arm_mve.h>
#endif

Expand Down

0 comments on commit 3b4e406

Please sign in to comment.