summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMSubtarget.cpp
diff options
context:
space:
mode:
authorJoey Gouly <joey.gouly@arm.com>2013-09-13 13:46:57 +0000
committerJoey Gouly <joey.gouly@arm.com>2013-09-13 13:46:57 +0000
commit2a9af9f18eac90b0de739b6ceddf6c2209086303 (patch)
treeff5ad4489e1daab9927b432785bf07075d799b81 /lib/Target/ARM/ARMSubtarget.cpp
parent993a0c56ec166ed1e6cc5b9275f81bc3ca4ed880 (diff)
downloadllvm-2a9af9f18eac90b0de739b6ceddf6c2209086303.tar.gz
llvm-2a9af9f18eac90b0de739b6ceddf6c2209086303.tar.bz2
llvm-2a9af9f18eac90b0de739b6ceddf6c2209086303.tar.xz
[ARMv8] Change hasV8Fp to hasFPARMv8, and other command line options
to be more consistent. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190692 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMSubtarget.cpp')
-rw-r--r--lib/Target/ARM/ARMSubtarget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp
index e9254c3d90..a227718e30 100644
--- a/lib/Target/ARM/ARMSubtarget.cpp
+++ b/lib/Target/ARM/ARMSubtarget.cpp
@@ -81,7 +81,7 @@ void ARMSubtarget::initializeEnvironment() {
HasVFPv2 = false;
HasVFPv3 = false;
HasVFPv4 = false;
- HasV8FP = false;
+ HasFPARMv8 = false;
HasNEON = false;
UseNEONForSinglePrecisionFP = false;
UseMulOps = UseFusedMulOps;