mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Handle the pseudo in MCInstLower.
llvm-svn: 110359
This commit is contained in:
parent
9fbaea3765
commit
904ec3a392
@ -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
Block a user