diff options
author | Vidya Praveen <vidyapraveen@arm.com> | 2017-09-11 15:14:57 +0100 |
---|---|---|
committer | Vidya Praveen <vp@gcc.gnu.org> | 2017-09-11 15:14:57 +0100 |
commit | eaddd128de97c5c32a3819747de2e3100e286a7a (patch) | |
tree | 0a0de25c8f1e0f8c442853df5b1ed24197dd610a /gcc/common | |
parent | 1328002a7d8044d063e245717bd9016a94fbfac0 (diff) | |
download | gcc-eaddd128de97c5c32a3819747de2e3100e286a7a.zip gcc-eaddd128de97c5c32a3819747de2e3100e286a7a.tar.gz gcc-eaddd128de97c5c32a3819747de2e3100e286a7a.tar.bz2 |
2017-09-11 Vidya Praveen <vidyapraveen@arm.com>
Revert r251800 and r251799.
From-SVN: r251980
Diffstat (limited to 'gcc/common')
-rw-r--r-- | gcc/common/config/arm/arm-common.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/common/config/arm/arm-common.c b/gcc/common/config/arm/arm-common.c index 7cb99ec..38bd3a7 100644 --- a/gcc/common/config/arm/arm-common.c +++ b/gcc/common/config/arm/arm-common.c @@ -574,7 +574,7 @@ arm_canon_arch_option (int argc, const char **argv) { /* The easiest and safest way to remove the default fpu capabilities is to look for a '+no..' option that removes - the base FPU bit (isa_bit_vfpv2). If that doesn't exist + the base FPU bit (isa_bit_VFPv2). If that doesn't exist then the best we can do is strip out all the bits that might be part of the most capable FPU we know about, which is "crypto-neon-fp-armv8". */ @@ -586,7 +586,7 @@ arm_canon_arch_option (int argc, const char **argv) ++ext) { if (ext->remove - && check_isa_bits_for (ext->isa_bits, isa_bit_vfpv2)) + && check_isa_bits_for (ext->isa_bits, isa_bit_VFPv2)) { arm_initialize_isa (fpu_isa, ext->isa_bits); bitmap_and_compl (target_isa, target_isa, fpu_isa); @@ -620,7 +620,7 @@ arm_canon_arch_option (int argc, const char **argv) { /* Clearing the VFPv2 bit is sufficient to stop any extention that builds on the FPU from matching. */ - bitmap_clear_bit (target_isa, isa_bit_vfpv2); + bitmap_clear_bit (target_isa, isa_bit_VFPv2); } /* If we don't have a selected architecture by now, something's @@ -692,8 +692,8 @@ arm_canon_arch_option (int argc, const char **argv) capable FPU variant that we do support. This is sufficient for multilib selection. */ - if (bitmap_bit_p (target_isa_unsatisfied, isa_bit_vfpv2) - && bitmap_bit_p (fpu_isa, isa_bit_vfpv2)) + if (bitmap_bit_p (target_isa_unsatisfied, isa_bit_VFPv2) + && bitmap_bit_p (fpu_isa, isa_bit_VFPv2)) { std::list<candidate_extension *>::iterator ipoint = extensions.begin (); |