summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMSubtarget.cpp
diff options
context:
space:
mode:
authorTilmann Scheller <tilmann.scheller@googlemail.com>2013-09-02 12:01:58 +0000
committerTilmann Scheller <tilmann.scheller@googlemail.com>2013-09-02 12:01:58 +0000
commit024e76b69bc46a20e96eba22f2655d249c495d00 (patch)
tree4abf78e7d31a017aa2d5540a9c6059c48ebdfe99 /lib/Target/ARM/ARMSubtarget.cpp
parent4629e0da6a19ea5883ecdfca841cacb3de657d73 (diff)
downloadllvm-024e76b69bc46a20e96eba22f2655d249c495d00.tar.gz
llvm-024e76b69bc46a20e96eba22f2655d249c495d00.tar.bz2
llvm-024e76b69bc46a20e96eba22f2655d249c495d00.tar.xz
ARM: Default to Swift when compiling for iOS 6 or later.
Test cases adjusted accordingly. This fixes rdar://14871821. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189756 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMSubtarget.cpp')
-rw-r--r--lib/Target/ARM/ARMSubtarget.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp
index 3111f5e385..a8e62e5a55 100644
--- a/lib/Target/ARM/ARMSubtarget.cpp
+++ b/lib/Target/ARM/ARMSubtarget.cpp
@@ -133,8 +133,13 @@ void ARMSubtarget::resetSubtargetFeatures(const MachineFunction *MF) {
}
void ARMSubtarget::resetSubtargetFeatures(StringRef CPU, StringRef FS) {
- if (CPUString.empty())
- CPUString = "generic";
+ if (CPUString.empty()) {
+ if (isTargetIOS() && !getTargetTriple().isOSVersionLT(6))
+ // Default to Swift for iOS 6 or later versions.
+ CPUString = "swift";
+ else
+ CPUString = "generic";
+ }
// Insert the architecture feature derived from the target triple into the
// feature string. This is important for setting features that are implied