forked from OSchip/llvm-project
just show the instruction, its not that slow.
llvm-svn: 72577
This commit is contained in:
parent
eed0ec5fdb
commit
0b0ddb21fe
|
@ -1164,12 +1164,7 @@ bool GVN::processLoad(LoadInst *L, SmallVectorImpl<Instruction*> &toErase) {
|
|||
DOUT << "GVN: load ";
|
||||
WriteAsOperand(*DOUT.stream(), L);
|
||||
Instruction *I = dep.getInst();
|
||||
DOUT << " is clobbered by " << I->getOpcodeName() << " instruction ";
|
||||
if (I->getType()->isFirstClassType())
|
||||
WriteAsOperand(*DOUT.stream(), I, false);
|
||||
else
|
||||
DOUT << *I;
|
||||
DOUT << "\n";
|
||||
DOUT << " is clobbered by " << *I;
|
||||
);
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue