diff options
author | notaz | 2013-04-01 21:05:36 +0300 |
---|---|---|
committer | notaz | 2013-04-01 21:05:36 +0300 |
commit | 55bf68531a29da02569d0c53caa2f08608a191bb (patch) | |
tree | 2e0a2ca1d897cdc49ad44a29f1ea65caaf29ab72 /frontend | |
parent | 98dacc2f457677c6f4460971bd838d0e13ba5ca3 (diff) | |
parent | b09a1d34f7fa3f8cee6b24ac33e3d98efad7712f (diff) | |
download | pcsx_rearmed-55bf68531a29da02569d0c53caa2f08608a191bb.tar.gz pcsx_rearmed-55bf68531a29da02569d0c53caa2f08608a191bb.tar.bz2 pcsx_rearmed-55bf68531a29da02569d0c53caa2f08608a191bb.zip |
Merge branch 'master' into libretro
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/cspace_neon.S | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/frontend/cspace_neon.S b/frontend/cspace_neon.S index e7b48a9..7420585 100644 --- a/frontend/cspace_neon.S +++ b/frontend/cspace_neon.S @@ -10,6 +10,12 @@ #include "arm_features.h" +/* sanity check */ +#ifndef __ARM_NEON__ +#error Compiling NEON code, but appropriate preprocessor flag is missing +#error This usually means -mfpu=neon or -mfloat-abi= is not correctly specified +#endif + .text .align 2 |