mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-06 10:38:54 +00:00
Fix to 80-col.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107684 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b271d8679d
commit
894339e19f
@ -367,8 +367,8 @@ private:
|
||||
newVNI->setIsPHIDef(false); // not a PHI def anymore.
|
||||
newVNI->setIsDefAccurate(true);
|
||||
} else {
|
||||
// non-PHI def. Rename the def. If it's two-addr that means renaming the use
|
||||
// and inserting a new copy too.
|
||||
// non-PHI def. Rename the def. If it's two-addr that means renaming the
|
||||
// use and inserting a new copy too.
|
||||
MachineInstr *defInst = lis->getInstructionFromIndex(newVNI->def);
|
||||
// We'll rename this now, so we can remove it from uses.
|
||||
uses.erase(defInst);
|
||||
@ -440,8 +440,8 @@ private:
|
||||
// reg.
|
||||
MachineBasicBlock *useMBB = useInst->getParent();
|
||||
MachineBasicBlock::iterator useItr(useInst);
|
||||
tii->copyRegToReg(*useMBB, llvm::next(useItr), li->reg, newVReg, trc, trc,
|
||||
DebugLoc());
|
||||
tii->copyRegToReg(*useMBB, llvm::next(useItr), li->reg, newVReg, trc,
|
||||
trc, DebugLoc());
|
||||
MachineInstr *copyMI = llvm::next(useItr);
|
||||
copyMI->addRegisterKilled(newVReg, tri);
|
||||
SlotIndex copyIdx = lis->InsertMachineInstrInMaps(copyMI);
|
||||
|
Loading…
x
Reference in New Issue
Block a user