mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-20 16:17:38 +00:00
whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149671 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -90,7 +90,7 @@ void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo,
|
||||
MachineBasicBlock *MBB,
|
||||
std::vector<MachineBasicBlock*> &WorkList) {
|
||||
unsigned BBNum = MBB->getNumber();
|
||||
|
||||
|
||||
// Check to see if this basic block is one of the killing blocks. If so,
|
||||
// remove it.
|
||||
for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
|
||||
@@ -98,7 +98,7 @@ void LiveVariables::MarkVirtRegAliveInBlock(VarInfo& VRInfo,
|
||||
VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
if (MBB == DefBlock) return; // Terminate recursion
|
||||
|
||||
if (VRInfo.AliveBlocks.test(BBNum))
|
||||
@@ -329,7 +329,7 @@ bool LiveVariables::HandlePhysRegKill(unsigned Reg, MachineInstr *MI) {
|
||||
// Or whole register is defined, but only partly used.
|
||||
// AX<dead> = AL<imp-def>
|
||||
// = AL<kill>
|
||||
// AX =
|
||||
// AX =
|
||||
MachineInstr *LastPartDef = 0;
|
||||
unsigned LastPartDefDist = 0;
|
||||
SmallSet<unsigned, 8> PartUses;
|
||||
|
||||
Reference in New Issue
Block a user