summaryrefslogtreecommitdiff
path: root/lib/Target/TargetMachine.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-01-17 06:54:59 +0000
committerAndrew Trick <atrick@apple.com>2012-01-17 06:54:59 +0000
commitc1b1c7b205589c9a081e1cbd33fb56506fc287b3 (patch)
treec61481c57a7048303dbb3365d3208ce290020f2b /lib/Target/TargetMachine.cpp
parent0f080913d1ff80bb61476724304359e14822b193 (diff)
downloadllvm-c1b1c7b205589c9a081e1cbd33fb56506fc287b3.tar.gz
llvm-c1b1c7b205589c9a081e1cbd33fb56506fc287b3.tar.bz2
llvm-c1b1c7b205589c9a081e1cbd33fb56506fc287b3.tar.xz
Moving options declarations around.
More short term hackery until we have a way to configure passes that work on LiveIntervals. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148289 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetMachine.cpp')
-rw-r--r--lib/Target/TargetMachine.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/Target/TargetMachine.cpp b/lib/Target/TargetMachine.cpp
index 90042dc1d5..19819b886c 100644
--- a/lib/Target/TargetMachine.cpp
+++ b/lib/Target/TargetMachine.cpp
@@ -37,14 +37,6 @@ FunctionSections("ffunction-sections",
cl::desc("Emit functions into separate sections"),
cl::init(false));
-/// EnableMachineSched - temporary flag to enable the machine scheduling pass
-/// until we complete the register allocation pass configuration cleanup.
-static cl::opt<bool, true>
-MachineSchedOpt("enable-misched",
- cl::desc("Enable the machine instruction scheduling pass."),
- cl::location(EnableMachineSched),
- cl::init(false), cl::Hidden);
-
//---------------------------------------------------------------------------
// TargetMachine Class
//