Rather than asserting. Dump out the MI that we are not able to encode and abort.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47933 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2008-03-05 02:08:03 +00:00
parent 34bc178e4d
commit 0b21390a86

View File

@ -807,5 +807,10 @@ void Emitter::emitInstruction(const MachineInstr &MI,
break;
}
assert((Desc->isVariadic() || CurOp == NumOps) && "Unknown encoding!");
if (!Desc->isVariadic() && CurOp != NumOps) {
cerr << "Cannot encode: ";
MI.dump();
cerr << '\n';
abort();
}
}