diff options
| author | Chris Lattner <sabre@nondot.org> | 2005-03-10 20:59:51 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2005-03-10 20:59:51 +0000 |
| commit | 6f6ecad995ce08fc603fafc9a44b03e5798e7630 (patch) | |
| tree | 3bf01a192ae0f7f43369b59ccaa8cd93d0d8ddef /llvm/lib/CodeGen/LiveIntervalAnalysis.cpp | |
| parent | 85e71639477d9b84ef089b82bf5ff8f26e735038 (diff) | |
| download | bcm5719-llvm-6f6ecad995ce08fc603fafc9a44b03e5798e7630.tar.gz bcm5719-llvm-6f6ecad995ce08fc603fafc9a44b03e5798e7630.zip | |
I didn't mean to check this in. :(
llvm-svn: 20555
Diffstat (limited to 'llvm/lib/CodeGen/LiveIntervalAnalysis.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/LiveIntervalAnalysis.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp index 0a6cb2d3411..8a54051673b 100644 --- a/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -58,8 +58,6 @@ namespace { EnableJoining("join-liveintervals", cl::desc("Join compatible live intervals"), cl::init(true)); - cl::opt<bool> - DisableHack("disable-hack"); }; void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const @@ -495,7 +493,7 @@ exit: // the physreg, then the new fragment has the same value as the one copied // into the vreg. if (interval.reg == DestReg && !interval.empty() && - MRegisterInfo::isVirtualRegister(SrcReg) && !DisableHack) { + MRegisterInfo::isVirtualRegister(SrcReg)) { // Get the live interval for the vreg, see if it is defined by a copy. LiveInterval &SrcInterval = getOrCreateInterval(SrcReg); |

