mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Print out the instruction instead of just the address!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2063 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
44cf390784
commit
e6b552fd86
@ -127,7 +127,9 @@ private:
|
||||
void visitSetCondInst(SetCondInst *SCI) {} // SetEQ & friends are ignored
|
||||
void visitFreeInst(FreeInst *FI) {} // Ignore free instructions
|
||||
void visitInstruction(Instruction *I) {
|
||||
std::cerr << "\n\n\nUNKNOWN INSTRUCTION type: " << I << "\n\n\n";
|
||||
std::cerr << "\n\n\nUNKNOWN INSTRUCTION type: ";
|
||||
I->dump();
|
||||
std::cerr << "\n\n\n";
|
||||
assert(0 && "Cannot proceed");
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user