forked from OSchip/llvm-project
Added a 2+-byte NOP instruction to the Intel tables,
for the assembler/disassembler to use. llvm-svn: 76914
This commit is contained in:
parent
ca2f085a4e
commit
8ce4021a40
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue