Added a 2+-byte NOP instruction to the Intel tables,

for the assembler/disassembler to use.

llvm-svn: 76914
This commit is contained in:
Sean Callanan 2009-07-23 23:39:34 +00:00
parent ca2f085a4e
commit 8ce4021a40
1 changed files with 4 additions and 1 deletions

View File

@ -489,8 +489,11 @@ def ADJCALLSTACKUP32 : I<0, Pseudo, (outs), (ins i32imm:$amt1, i32imm:$amt2),
}
// Nop
let neverHasSideEffects = 1 in
let neverHasSideEffects = 1 in {
def NOOP : I<0x90, RawFrm, (outs), (ins), "nop", []>;
def NOOPL : I<0x1f, MRM0m, (outs), (ins i32mem:$zero),
"nopl\t$zero", []>, TB;
}
// PIC base
let neverHasSideEffects = 1, isNotDuplicable = 1, Uses = [ESP] in