[llvm-commits] [llvm] r115693 - /llvm/trunk/lib/Target/X86/X86InstrInfo.td
Chris Lattner
sabre at nondot.org
Tue Oct 5 15:16:48 PDT 2010
Author: lattner
Date: Tue Oct 5 17:16:48 2010
New Revision: 115693
URL: http://llvm.org/viewvc/llvm-project?rev=115693&view=rev
Log:
fix a bug I introduced in r115669, which ended up with MOV64mr_TC
not getting marked as mayStore. This fixes llvm-gcc bootstrap.
Modified:
llvm/trunk/lib/Target/X86/X86InstrInfo.td
Modified: llvm/trunk/lib/Target/X86/X86InstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InstrInfo.td?rev=115693&r1=115692&r2=115693&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrInfo.td (original)
+++ llvm/trunk/lib/Target/X86/X86InstrInfo.td Tue Oct 5 17:16:48 2010
@@ -897,7 +897,7 @@
[]>;
}
-let mayStore = 1 in
+let mayStore = 1 in {
def MOV32mr_TC : I<0x89, MRMDestMem, (outs), (ins i32mem_TC:$dst, GR32_TC:$src),
"mov{l}\t{$src, $dst|$dst, $src}",
[]>;
@@ -905,6 +905,7 @@
"mov{q}\t{$src, $dst|$dst, $src}",
[]>;
}
+} // isCodeGenOnly
// Versions of MOV8rr, MOV8mr, and MOV8rm that use i8mem_NOREX and GR8_NOREX so
// that they can be used for copying and storing h registers, which can't be
More information about the llvm-commits
mailing list