mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Minor cleanup. No functional change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163510 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9438d1e351
commit
ff1b63172d
@ -241,7 +241,7 @@ unsigned StackColoring::collectMarkers(unsigned NumSlot) {
|
||||
|
||||
MarkersFound++;
|
||||
|
||||
const Value* Allocation = MFI->getObjectAllocation(Slot);
|
||||
const Value *Allocation = MFI->getObjectAllocation(Slot);
|
||||
if (Allocation) {
|
||||
DEBUG(dbgs()<<"Found lifetime marker for allocation: "<<
|
||||
Allocation->getName()<<"\n");
|
||||
@ -452,8 +452,8 @@ void StackColoring::remapInstructions(DenseMap<int, int> &SlotRemap) {
|
||||
DenseMap<const Value*, const Value*> Allocas;
|
||||
for (DenseMap<int, int>::iterator it = SlotRemap.begin(),
|
||||
e = SlotRemap.end(); it != e; ++it) {
|
||||
const Value* From = MFI->getObjectAllocation(it->first);
|
||||
const Value* To = MFI->getObjectAllocation(it->second);
|
||||
const Value *From = MFI->getObjectAllocation(it->first);
|
||||
const Value *To = MFI->getObjectAllocation(it->second);
|
||||
assert(To && From && "Invalid allocation object");
|
||||
Allocas[From] = To;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user