diff options
Diffstat (limited to 'llvm/lib/Target/X86/X86InstrInfo.td')
| -rw-r--r-- | llvm/lib/Target/X86/X86InstrInfo.td | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/X86/X86InstrInfo.td b/llvm/lib/Target/X86/X86InstrInfo.td index 16b2af71f98..e43d1729b18 100644 --- a/llvm/lib/Target/X86/X86InstrInfo.td +++ b/llvm/lib/Target/X86/X86InstrInfo.td @@ -524,7 +524,7 @@ def ADJCALLSTACKUP32   : I<0, Pseudo, (outs), (ins i32imm:$amt1, i32imm:$amt2),  }  // x86-64 va_start lowering magic. -let usesCustomDAGSchedInserter = 1 in +let usesCustomInserter = 1 in  def VASTART_SAVE_XMM_REGS : I<0, Pseudo,                                (outs),                                (ins GR8:$al, @@ -1129,13 +1129,13 @@ let isTwoAddress = 1 in {  // Conditional moves  let Uses = [EFLAGS] in { -// X86 doesn't have 8-bit conditional moves. Use a customDAGSchedInserter to +// X86 doesn't have 8-bit conditional moves. Use a customInserter to  // emit control flow. An alternative to this is to mark i8 SELECT as Promote,  // however that requires promoting the operands, and can induce additional  // i8 register pressure. Note that CMOV_GR8 is conservatively considered to  // clobber EFLAGS, because if one of the operands is zero, the expansion  // could involve an xor. -let usesCustomDAGSchedInserter = 1, isTwoAddress = 0, Defs = [EFLAGS] in +let usesCustomInserter = 1, isTwoAddress = 0, Defs = [EFLAGS] in  def CMOV_GR8 : I<0, Pseudo,                   (outs GR8:$dst), (ins GR8:$src1, GR8:$src2, i8imm:$cond),                   "#CMOV_GR8 PSEUDO!", @@ -3667,7 +3667,7 @@ def LOCK_DEC32m : I<0xFF, MRM1m, (outs), (ins i32mem:$dst),  // Atomic exchange, and, or, xor  let Constraints = "$val = $dst", Defs = [EFLAGS], -                  usesCustomDAGSchedInserter = 1 in { +                  usesCustomInserter = 1 in {  def ATOMAND32 : I<0, Pseudo, (outs GR32:$dst),(ins i32mem:$ptr, GR32:$val),                 "#ATOMAND32 PSEUDO!",                  [(set GR32:$dst, (atomic_load_and_32 addr:$ptr, GR32:$val))]>; @@ -3736,7 +3736,7 @@ let Constraints = "$val1 = $dst1, $val2 = $dst2",                    Defs = [EFLAGS, EAX, EBX, ECX, EDX],                    Uses = [EAX, EBX, ECX, EDX],                    mayLoad = 1, mayStore = 1, -                  usesCustomDAGSchedInserter = 1 in { +                  usesCustomInserter = 1 in {  def ATOMAND6432 : I<0, Pseudo, (outs GR32:$dst1, GR32:$dst2),                                 (ins i64mem:$ptr, GR32:$val1, GR32:$val2),                 "#ATOMAND6432 PSEUDO!", []>;  | 

