aboutsummaryrefslogtreecommitdiffstats
path: root/compute_ref.c
diff options
context:
space:
mode:
Diffstat (limited to 'compute_ref.c')
-rw-r--r--compute_ref.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/compute_ref.c b/compute_ref.c
index 0d9e4aa..47f51cb 100644
--- a/compute_ref.c
+++ b/compute_ref.c
@@ -181,7 +181,7 @@ extern void exec_vcvt(void);
extern void exec_vrecps(void);
extern void exec_vrsqrts(void);
-#ifdef __ARMCC_VERSION
+#if defined(__ARMCC_VERSION) || !defined(__arm__)
extern void exec_integer(void); /* Integer (non-NEON) intrinsics */
extern void exec_dsp(void); /* DSP (non-NEON) intrinsics */
extern void exec_dspfns(void); /* DSP FNS (non-NEON/ITU) intrinsics */
@@ -348,7 +348,7 @@ int main (void)
exec_vrecps ();
exec_vrsqrts ();
-#ifdef __ARMCC_VERSION
+#if defined(__ARMCC_VERSION) || !defined(__arm__)
exec_integer ();
exec_dsp ();
exec_dspfns ();