1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Fix a bunch of JIT failures with the new isel

llvm-svn: 25748
This commit is contained in:
Chris Lattner 2006-01-28 18:19:37 +00:00
parent 4d971bdfa7
commit 0256ca3257

View File

@ -394,10 +394,21 @@ void Emitter::emitInstruction(const MachineInstr &MI) {
switch (Desc.TSFlags & X86II::FormMask) {
default: assert(0 && "Unknown FormMask value in X86 MachineCodeEmitter!");
case X86II::Pseudo:
if (Opcode != X86::IMPLICIT_USE &&
Opcode != X86::IMPLICIT_DEF &&
Opcode != X86::FP_REG_KILL)
std::cerr << "X86 Machine Code Emitter: No 'form', not emitting: " << MI;
#ifndef NDEBUG
switch (Opcode) {
default:
assert(0 && "psuedo instructions should be removed before code emission");
case X86::IMPLICIT_USE:
case X86::IMPLICIT_DEF:
case X86::IMPLICIT_DEF_R8:
case X86::IMPLICIT_DEF_R16:
case X86::IMPLICIT_DEF_R32:
case X86::IMPLICIT_DEF_FR32:
case X86::IMPLICIT_DEF_FR64:
case X86::FP_REG_KILL:
break;
}
#endif
break;
case X86II::RawFrm: