mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Handle the pseudo in MCInstLower.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110359 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cff7178844
commit
c34ea3770e
@ -515,6 +515,12 @@ void X86AsmPrinter::EmitInstruction(const MachineInstr *MI) {
|
||||
}
|
||||
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::TAILJMPd:
|
||||
case X86::TAILJMPd64:
|
||||
|
Loading…
Reference in New Issue
Block a user