Fix a typo in r164357
authorMichael Liao <michael.liao@intel.com>
Fri, 21 Sep 2012 16:03:03 +0000 (16:03 +0000)
committerMichael Liao <michael.liao@intel.com>
Fri, 21 Sep 2012 16:03:03 +0000 (16:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164372 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86InstrCompiler.td

index d702e48efd18f9c88edf9aabd3d58ce8a6f392aa..80ae724ba88022f67b86f58655ffccc24ebe60f3 100644 (file)
@@ -765,14 +765,14 @@ multiclass ATOMIC_LOAD_BINOP<bits<8> opc8, bits<8> opc, string mnemonic,
                         GR32:$dst,
                         (!cast<PatFrag>(frag # "_32") addr:$ptr, GR32:$val))],
                      itin>;
-    def #NAME#64 : I<opc, MRMSrcMem, (outs GR64:$dst),
-                     (ins GR64:$val, i64mem:$ptr),
-                     !strconcat("lock\n\t", mnemonic,
-                                "{q}\t{$val, $ptr|$ptr, $val}"),
-                     [(set
-                        GR64:$dst,
-                        (!cast<PatFrag>(frag # "_64") addr:$ptr, GR64:$val))],
-                     itin>;
+    def #NAME#64 : RI<opc, MRMSrcMem, (outs GR64:$dst),
+                      (ins GR64:$val, i64mem:$ptr),
+                      !strconcat("lock\n\t", mnemonic,
+                                 "{q}\t{$val, $ptr|$ptr, $val}"),
+                      [(set
+                         GR64:$dst,
+                         (!cast<PatFrag>(frag # "_64") addr:$ptr, GR64:$val))],
+                      itin>;
   }
 }