mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-22 20:05:38 +00:00
Ignore debugging related instructions if they get this far.
llvm-svn: 47934
This commit is contained in:
parent
a2939a16de
commit
d421708e35
@ -610,11 +610,15 @@ void Emitter::emitInstruction(const MachineInstr &MI,
|
||||
switch (Opcode) {
|
||||
default:
|
||||
assert(0 && "psuedo instructions should be removed before code emission");
|
||||
break;
|
||||
case TargetInstrInfo::INLINEASM:
|
||||
assert(0 && "JIT does not support inline asm!\n");
|
||||
break;
|
||||
case TargetInstrInfo::LABEL:
|
||||
MCE.emitLabel(MI.getOperand(0).getImm());
|
||||
break;
|
||||
case TargetInstrInfo::DECLARE:
|
||||
case X86::DWARF_LOC:
|
||||
case X86::IMPLICIT_DEF_GR8:
|
||||
case X86::IMPLICIT_DEF_GR16:
|
||||
case X86::IMPLICIT_DEF_GR32:
|
||||
|
Loading…
x
Reference in New Issue
Block a user