diff options
author | Christophe Lyon <christophe.lyon@linaro.org> | 2019-11-18 09:20:18 +0000 |
---|---|---|
committer | Christophe Lyon <clyon@gcc.gnu.org> | 2019-11-18 10:20:18 +0100 |
commit | 762ff5b304c70c05ec0b98ef3bc458f6e31de514 (patch) | |
tree | e37196a84110c66e8da1a3d317c4e97af7a1c3c6 /gcc | |
parent | 1ce51d9a8d54c2b2fafb232060bf9f28629a29e6 (diff) | |
download | gcc-762ff5b304c70c05ec0b98ef3bc458f6e31de514.zip gcc-762ff5b304c70c05ec0b98ef3bc458f6e31de514.tar.gz gcc-762ff5b304c70c05ec0b98ef3bc458f6e31de514.tar.bz2 |
[testsuite][ARM] check_effective_target_arm_vfp_ok_nocache: Fix typo in option name
2019-11-18 Christophe Lyon <christophe.lyon@linaro.org>
* lib/target-supports.exp
(check_effective_target_arm_vfp_ok_nocache): Fix typo in option
name.
From-SVN: r278390
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/lib/target-supports.exp | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9ef0b13..40a6112 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2019-11-18 Christophe Lyon <christophe.lyon@linaro.org> + + * lib/target-supports.exp + (check_effective_target_arm_vfp_ok_nocache): Fix typo in option + name. + 2019-11-17 Jeff Law <law@redhat.com> * gcc.dg/complex-6.c: Do not run dump scan tests for rx target. diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index 751045d..54b2fca 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -3496,8 +3496,8 @@ proc check_effective_target_arm_vfp_ok_nocache { } { global et_arm_vfp_flags set et_arm_vfp_flags "" if { [check_effective_target_arm32] } { - foreach flags {"-mfpu=vfp" "-mfpu=vfp -mfloat-abi=softfp" "-mpu=vfp -mfloat-abi=hard"} { - if { [check_no_compiler_messages_nocache arm_fp_ok object { + foreach flags {"-mfpu=vfp" "-mfpu=vfp -mfloat-abi=softfp" "-mfpu=vfp -mfloat-abi=hard"} { + if { [check_no_compiler_messages_nocache arm_vfp_ok object { #ifndef __ARM_FP #error __ARM_FP not defined #endif |