diff options
author | Erik Schnetter <schnetter@gmail.com> | 2013-08-20 12:40:36 -0400 |
---|---|---|
committer | Erik Schnetter <schnetter@gmail.com> | 2013-08-20 12:40:36 -0400 |
commit | a5d2298e3b65c20f5a085ec38195a338d38efb73 (patch) | |
tree | fffda552c331948900b3524f7957c6aab2db6207 | |
parent | 321b65c347172eb2222fe8a540a6dd0a157cea72 (diff) | |
download | vecmathlib-a5d2298e3b65c20f5a085ec38195a338d38efb73.zip vecmathlib-a5d2298e3b65c20f5a085ec38195a338d38efb73.tar.gz |
Correct detecting ARM NEON intrinsics
-rw-r--r-- | vecmathlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vecmathlib.h b/vecmathlib.h index 6f1f2be..b2cf6c5 100644 --- a/vecmathlib.h +++ b/vecmathlib.h @@ -76,10 +76,10 @@ namespace std { class type_info; } // Vecmathlib's functions (mostly useful for testing Vecmathlib) #include "vec_test.h" -#if defined __ARM_PCS_VFP // ARM NEON -// TODO: VFP +#if defined __ARM_NEON__ // ARM NEON # include "vec_neon_float2.h" # include "vec_neon_float4.h" +// #elif defined __ARM_PCS_VFP // ARM VFP #endif #if defined __SSE2__ // Intel SSE 2 |