diff options
-rw-r--r-- | lib/Target/X86/X86CodeEmitter.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/X86/X86CodeEmitter.cpp b/lib/Target/X86/X86CodeEmitter.cpp index dee58cf434..61e3ef6845 100644 --- a/lib/Target/X86/X86CodeEmitter.cpp +++ b/lib/Target/X86/X86CodeEmitter.cpp @@ -385,6 +385,9 @@ void Emitter::emitInstruction(const MachineInstr &MI) { switch (Opcode) { default: assert(0 && "psuedo instructions should be removed before code emission"); + case TargetInstrInfo::INLINEASM: + std::cerr << "JIT does not support inline asm!\n"; + abort(); case X86::IMPLICIT_USE: case X86::IMPLICIT_DEF: case X86::IMPLICIT_DEF_GR8: |