Allow inline asm nodes with empty bodies inside JIT.
authorAnton Korobeynikov <asl@math.spbu.ru>
Thu, 21 Aug 2008 17:33:01 +0000 (17:33 +0000)
committerAnton Korobeynikov <asl@math.spbu.ru>
Thu, 21 Aug 2008 17:33:01 +0000 (17:33 +0000)
This unbreaks explicit reg vars inside JIT, which are
implemented in such hacky way :)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55128 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86CodeEmitter.cpp

index ec93eb413def731a12b9276c4f98802cfc122319..c3a1ed921a7c090aaa4bb1dfcd65ea578704a6a1 100644 (file)
@@ -486,9 +486,13 @@ void Emitter::emitInstruction(const MachineInstr &MI,
     default: 
       assert(0 && "psuedo instructions should be removed before code emission");
       break;
-    case TargetInstrInfo::INLINEASM:
-      assert(0 && "JIT does not support inline asm!\n");
+    case TargetInstrInfo::INLINEASM: {
+      const char* Value = MI.getOperand(0).getSymbolName();
+      /* We allow inline assembler nodes with empty bodies - they can
+         implicitly define registers, which is ok for JIT. */
+      assert((Value[0] == 0) && "JIT does not support inline asm!\n");
       break;
+    }
     case TargetInstrInfo::DBG_LABEL:
     case TargetInstrInfo::EH_LABEL:
       MCE.emitLabel(MI.getOperand(0).getImm());