aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetOptions.h
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-01-13 06:30:30 +0000
committerAndrew Trick <atrick@apple.com>2012-01-13 06:30:30 +0000
commit96f678f2d78ae9a2a8c99ca612bf59c056b36797 (patch)
treed14d5f7bdbc058b32cf93ce03faa7f6cd4aef8dc /include/llvm/Target/TargetOptions.h
parentb3fe88f8379c4c4193d5d84267ae1a304437f8fa (diff)
downloadexternal_llvm-96f678f2d78ae9a2a8c99ca612bf59c056b36797.zip
external_llvm-96f678f2d78ae9a2a8c99ca612bf59c056b36797.tar.gz
external_llvm-96f678f2d78ae9a2a8c99ca612bf59c056b36797.tar.bz2
Added the MachineSchedulerPass skeleton.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148105 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetOptions.h')
-rw-r--r--include/llvm/Target/TargetOptions.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h
index 3f42bbe..cb22b18 100644
--- a/include/llvm/Target/TargetOptions.h
+++ b/include/llvm/Target/TargetOptions.h
@@ -34,6 +34,10 @@ namespace llvm {
/// wth earlier copy coalescing.
extern bool StrongPHIElim;
+ /// EnableMachineSched - temporary flag to enable the machine scheduling pass
+ /// until we complete the register allocation pass configuration cleanup.
+ extern bool EnableMachineSched;
+
class TargetOptions {
public:
TargetOptions()