diff options
author | David Goodwin <david_goodwin@apple.com> | 2009-10-01 21:46:35 +0000 |
---|---|---|
committer | David Goodwin <david_goodwin@apple.com> | 2009-10-01 21:46:35 +0000 |
commit | 471850ab84301dd47cab2bf8d694fcb5766c1169 (patch) | |
tree | 03f4b18c0fefa6a17c4b7516336aef017399f8fe /lib/Target/ARM/ARMSubtarget.cpp | |
parent | 10469f8e48e007989b0469e677d4000a1311ecd2 (diff) |
Restore the -post-RA-scheduler flag as an override for the target specification. Remove -mattr for setting PostRAScheduler enable and instead use CPU string.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83215 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMSubtarget.cpp')
-rw-r--r-- | lib/Target/ARM/ARMSubtarget.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp index b46bd0c1b8..704cf7abfb 100644 --- a/lib/Target/ARM/ARMSubtarget.cpp +++ b/lib/Target/ARM/ARMSubtarget.cpp @@ -93,6 +93,11 @@ ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &FS, if (isTargetDarwin()) IsR9Reserved = ReserveR9 | (ARMArchVersion < V6); + + // Set CPU specific features. + if (CPUString == "cortex-a8") { + PostRAScheduler = true; + } } /// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol. |