diff options
author | Michael Liao <michael.liao@intel.com> | 2012-09-22 03:39:42 +0000 |
---|---|---|
committer | Michael Liao <michael.liao@intel.com> | 2012-09-22 03:39:42 +0000 |
commit | 730b9dd2cec8a057f4dcc2069e0bc9a444396ea5 (patch) | |
tree | 9e75d490a9f2b3e6401f7ca5c5b5931191c862dd /lib/Target/X86/X86InstrCompiler.td | |
parent | 92649883119aaa8edd9ccf612eaaff5ccc8fcc77 (diff) | |
download | external_llvm-730b9dd2cec8a057f4dcc2069e0bc9a444396ea5.zip external_llvm-730b9dd2cec8a057f4dcc2069e0bc9a444396ea5.tar.gz external_llvm-730b9dd2cec8a057f4dcc2069e0bc9a444396ea5.tar.bz2 |
Fix typo in r164357
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164452 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86InstrCompiler.td')
-rw-r--r-- | lib/Target/X86/X86InstrCompiler.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrCompiler.td b/lib/Target/X86/X86InstrCompiler.td index 80ae724..9bfcd68 100644 --- a/lib/Target/X86/X86InstrCompiler.td +++ b/lib/Target/X86/X86InstrCompiler.td @@ -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; |