diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-01-23 10:26:57 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-01-23 10:26:57 +0000 |
commit | 8cbc25d9458f5f48da686fc1134b6bd346e2832c (patch) | |
tree | b5f25f3a37cf7347cd72b77ebb6ce423ae4d0f20 /llvm/lib/Target/TargetMachine.cpp | |
parent | 20bac07abbbc50c22ef5f0bd11275e026579b88c (diff) | |
download | bcm5719-llvm-8cbc25d9458f5f48da686fc1134b6bd346e2832c.tar.gz bcm5719-llvm-8cbc25d9458f5f48da686fc1134b6bd346e2832c.zip |
Remove the '-disable-scheduling' flag and replace it with the 'source' option of
the '-pre-RA-sched' flag. It actually makes more sense to do it this way. Also,
keep track of the SDNode ordering by default. Eventually, we would like to make
this ordering a way to break a "tie" in the scheduler. However, doing that now
breaks the "CodeGen/X86/abi-isel.ll" test for 32-bit Linux.
llvm-svn: 94308
Diffstat (limited to 'llvm/lib/Target/TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/TargetMachine.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp index 46bc9a33141..fec59b5e2b5 100644 --- a/llvm/lib/Target/TargetMachine.cpp +++ b/llvm/lib/Target/TargetMachine.cpp @@ -46,7 +46,6 @@ namespace llvm { bool DisableJumpTables; bool StrongPHIElim; bool AsmVerbosityDefault(false); - bool DisableScheduling; } static cl::opt<bool, true> @@ -198,11 +197,6 @@ EnableStrongPHIElim(cl::Hidden, "strong-phi-elim", cl::desc("Use strong PHI elimination."), cl::location(StrongPHIElim), cl::init(false)); -static cl::opt<bool, true> -DisableInstScheduling("disable-scheduling", - cl::desc("Disable instruction scheduling"), - cl::location(DisableScheduling), - cl::init(false)); //--------------------------------------------------------------------------- // TargetMachine Class |