mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 07:34:33 +00:00
Give a good error message when we try to jit inline asm.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29891 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c114b2cad7
commit
8d3e1d6613
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user