mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 21:30:49 +00:00
just show the instruction, its not that slow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72577 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7e55a00d06
commit
70ac142560
@ -1164,12 +1164,7 @@ bool GVN::processLoad(LoadInst *L, SmallVectorImpl<Instruction*> &toErase) {
|
|||||||
DOUT << "GVN: load ";
|
DOUT << "GVN: load ";
|
||||||
WriteAsOperand(*DOUT.stream(), L);
|
WriteAsOperand(*DOUT.stream(), L);
|
||||||
Instruction *I = dep.getInst();
|
Instruction *I = dep.getInst();
|
||||||
DOUT << " is clobbered by " << I->getOpcodeName() << " instruction ";
|
DOUT << " is clobbered by " << *I;
|
||||||
if (I->getType()->isFirstClassType())
|
|
||||||
WriteAsOperand(*DOUT.stream(), I, false);
|
|
||||||
else
|
|
||||||
DOUT << *I;
|
|
||||||
DOUT << "\n";
|
|
||||||
);
|
);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user