diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/arm/arm_neon.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2f29824..f4acad4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2017-07-17 Tamar Christina <tamar.christina@arm.com> + + * config/arm/arm_neon.h: Fix softp typo. + 2017-07-17 Jakub Jelinek <jakub@redhat.com> PR tree-optimization/81365 diff --git a/gcc/config/arm/arm_neon.h b/gcc/config/arm/arm_neon.h index 65f36e2..0d436e8 100644 --- a/gcc/config/arm/arm_neon.h +++ b/gcc/config/arm/arm_neon.h @@ -28,7 +28,7 @@ #define _GCC_ARM_NEON_H 1 #ifndef __ARM_FP -#error "NEON intrinsics not available with the soft-float ABI. Please use -mfloat-abi=softp or -mfloat-abi=hard" +#error "NEON intrinsics not available with the soft-float ABI. Please use -mfloat-abi=softfp or -mfloat-abi=hard" #else #pragma GCC push_options |