1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

Fix typo in r164357

llvm-svn: 164452
This commit is contained in:
Michael Liao 2012-09-22 03:39:42 +00:00
parent 7a73f9d7f4
commit 0a4f3eefaf

View 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;