diff options
Diffstat (limited to 'vecmathlib.h')
-rw-r--r-- | vecmathlib.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vecmathlib.h b/vecmathlib.h index 30e0718..b664ecf 100644 --- a/vecmathlib.h +++ b/vecmathlib.h @@ -51,6 +51,11 @@ namespace std { class type_info; } // Vecmathlib's functions (mostly useful for testing Vecmathlib) #include "vec_test.h" +#if defined __ARM_NEON__ // ARM NEON +// TODO: VFP +# include "vec_float_neon.h" +#endif + #if defined __SSE2__ // Intel SSE 2 # include "vec_float_sse2_scalar.h" # include "vec_double_sse2_scalar.h" |