mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-20 11:08:27 +00:00
I didn't mean to check this in. :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20555 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ee639f1760
commit
e97568c3c4
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user