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

lib/Target/X86/X86InstrCompiler.td

index 80ae724ba88022f67b86f58655ffccc24ebe60f3..9bfcd6855188d1c04e51bc19d04fe45e2e9ef5f6 100644 (file)
@@ -699,7 +699,7 @@ multiclass LCMPXCHG_BinOp<bits<8> Opc8, bits<8> Opc, Format Form,
                           InstrItinClass itin8, InstrItinClass itin> {
 let isCodeGenOnly = 1 in {
   let Defs = [AL, EFLAGS], Uses = [AL] in
-  def #NAME#8  : I<Opc, Form, (outs), (ins i8mem:$ptr, GR8:$swap),
+  def #NAME#8  : I<Opc8, Form, (outs), (ins i8mem:$ptr, GR8:$swap),
                    !strconcat("lock\n\t", mnemonic,
                               "{b}\t{$swap, $ptr|$ptr, $swap}"),
                    [(frag addr:$ptr, GR8:$swap, 1)], itin8>, TB, LOCK;