summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMSubtarget.cpp
diff options
context:
space:
mode:
authorJoey Gouly <joey.gouly@arm.com>2013-06-27 11:49:26 +0000
committerJoey Gouly <joey.gouly@arm.com>2013-06-27 11:49:26 +0000
commit31d2f08f8893f38d2d7293195f3707edfefbeeb6 (patch)
tree40d6c4859d1d70ac391421b5f235fc4f7138f45a /lib/Target/ARM/ARMSubtarget.cpp
parent88d93a7cc4546439c82490db20c71b4b702dcc7a (diff)
downloadllvm-31d2f08f8893f38d2d7293195f3707edfefbeeb6.tar.gz
llvm-31d2f08f8893f38d2d7293195f3707edfefbeeb6.tar.bz2
llvm-31d2f08f8893f38d2d7293195f3707edfefbeeb6.tar.xz
Add a Subtarget feature 'v8fp' to the ARM backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185073 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMSubtarget.cpp')
-rw-r--r--lib/Target/ARM/ARMSubtarget.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp
index 3a5d4bb8ab..c592421d9a 100644
--- a/lib/Target/ARM/ARMSubtarget.cpp
+++ b/lib/Target/ARM/ARMSubtarget.cpp
@@ -81,6 +81,7 @@ void ARMSubtarget::initializeEnvironment() {
HasVFPv2 = false;
HasVFPv3 = false;
HasVFPv4 = false;
+ HasV8FP = false;
HasNEON = false;
UseNEONForSinglePrecisionFP = false;
UseMulOps = UseFusedMulOps;