mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 22:28:18 +00:00
Memdep says that an instruction clobbers itself
when it means there is no specific clobber instruction. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116960 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -150,7 +150,10 @@ void MemDepPrinter::print(raw_ostream &OS, const Module *M) const {
|
|||||||
WriteAsOperand(OS, DepBB, /*PrintType=*/false, M);
|
WriteAsOperand(OS, DepBB, /*PrintType=*/false, M);
|
||||||
}
|
}
|
||||||
OS << " from: ";
|
OS << " from: ";
|
||||||
DepInst->print(OS);
|
if (DepInst == Inst)
|
||||||
|
OS << "<unspecified>";
|
||||||
|
else
|
||||||
|
DepInst->print(OS);
|
||||||
OS << "\n";
|
OS << "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user