forked from OSchip/llvm-project
parent
adb93e56a3
commit
4abffad17c
|
|
@ -515,6 +515,12 @@ void X86AsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
// Emit nothing here but a comment if we can.
|
||||||
|
case X86::Int_MemBarrier:
|
||||||
|
if (OutStreamer.hasRawTextSupport())
|
||||||
|
OutStreamer.EmitRawText(StringRef("\t#MEMBARRIER"));
|
||||||
|
return;
|
||||||
|
|
||||||
case X86::TAILJMPr:
|
case X86::TAILJMPr:
|
||||||
case X86::TAILJMPd:
|
case X86::TAILJMPd:
|
||||||
case X86::TAILJMPd64:
|
case X86::TAILJMPd64:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue