diff options
author | Erik Schnetter <schnetter@gmail.com> | 2013-06-12 21:51:06 -0400 |
---|---|---|
committer | Erik Schnetter <schnetter@gmail.com> | 2013-06-12 21:51:06 -0400 |
commit | 1b06ffdbd59622c129a63b8234f90306e81723db (patch) | |
tree | f81db29d94a174e4c6b02e85ee2939cf0cb4abc9 | |
parent | ec166174142421891c8e42cd6c6d10a0ac58a38b (diff) | |
download | vecmathlib-1b06ffdbd59622c129a63b8234f90306e81723db.zip vecmathlib-1b06ffdbd59622c129a63b8234f90306e81723db.tar.gz |
Correct NEON detection
-rw-r--r-- | vecmathlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vecmathlib.h b/vecmathlib.h index b664ecf..e79188a 100644 --- a/vecmathlib.h +++ b/vecmathlib.h @@ -51,7 +51,7 @@ namespace std { class type_info; } // Vecmathlib's functions (mostly useful for testing Vecmathlib) #include "vec_test.h" -#if defined __ARM_NEON__ // ARM NEON +#if defined __ARM_PCS_VFP // ARM NEON // TODO: VFP # include "vec_float_neon.h" #endif |