diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-07-07 08:26:46 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-07-07 08:26:46 +0000 |
commit | db068738e806753bc5735434cab9b9f930840c7a (patch) | |
tree | 6badab5755b9428aec30cdbbf587f07271d2e89e /lib/Target/ARM/ARMSubtarget.cpp | |
parent | 347c50a2933f756097fa5798f2b6c34a19df4162 (diff) |
Sink feature IsThumb into MC layer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134608 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMSubtarget.cpp')
-rw-r--r-- | lib/Target/ARM/ARMSubtarget.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp index 12f12ad862..19059852bc 100644 --- a/lib/Target/ARM/ARMSubtarget.cpp +++ b/lib/Target/ARM/ARMSubtarget.cpp @@ -81,14 +81,13 @@ ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &CPU, // Insert the architecture feature derived from the target triple into the // feature string. This is important for setting features that are implied // based on the architecture version. - std::string ArchFS = ARM_MC::ParseARMTriple(TT, IsThumb); + std::string ArchFS = ARM_MC::ParseARMTriple(TT); if (!FS.empty()) { if (!ArchFS.empty()) ArchFS = ArchFS + "," + FS; else ArchFS = FS; } - ParseSubtargetFeatures(CPUString, ArchFS); // Thumb2 implies at least V6T2. FIXME: Fix tests to explicitly specify a |