summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMSubtarget.cpp
diff options
context:
space:
mode:
authorJoerg Sonnenberger <joerg@bec.de>2013-12-16 18:51:28 +0000
committerJoerg Sonnenberger <joerg@bec.de>2013-12-16 18:51:28 +0000
commit7113922b20026e1e56c3b3861cab8b148f06ab90 (patch)
tree9a5fd2b977613eb37c71bb33ef6c6f4dcb747f60 /lib/Target/ARM/ARMSubtarget.cpp
parent0762d6c0a7f130d0d7b264bd152c3e74eb0aa9d3 (diff)
downloadllvm-7113922b20026e1e56c3b3861cab8b148f06ab90.tar.gz
llvm-7113922b20026e1e56c3b3861cab8b148f06ab90.tar.bz2
llvm-7113922b20026e1e56c3b3861cab8b148f06ab90.tar.xz
Recognize EABIHF as environment and use it for RTAPI + VFP.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197405 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 a0bf7a63e8..3c5bed52b7 100644
--- a/lib/Target/ARM/ARMSubtarget.cpp
+++ b/lib/Target/ARM/ARMSubtarget.cpp
@@ -192,6 +192,7 @@ void ARMSubtarget::resetSubtargetFeatures(StringRef CPU, StringRef FS) {
switch (TargetTriple.getEnvironment()) {
case Triple::Android:
case Triple::EABI:
+ case Triple::EABIHF:
case Triple::GNUEABI:
case Triple::GNUEABIHF:
TargetABI = ARM_ABI_AAPCS;