mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
fix rdar://8407548, I missed the commuted form of xchg/test without a suffix.
llvm-svn: 113427
This commit is contained in:
parent
7e0932fb43
commit
43c86a062c
@ -850,7 +850,8 @@ ParseInstruction(StringRef Name, SMLoc NameLoc,
|
||||
// The assembler accepts "xchgX <reg>, <mem>" and "xchgX <mem>, <reg>" as
|
||||
// synonyms. Our tables only have the "<reg>, <mem>" form, so if we see the
|
||||
// other operand order, swap them.
|
||||
if (Name == "xchgb" || Name == "xchgw" || Name == "xchgl" || Name == "xchgq")
|
||||
if (Name == "xchgb" || Name == "xchgw" || Name == "xchgl" || Name == "xchgq"||
|
||||
Name == "xchg")
|
||||
if (Operands.size() == 3 &&
|
||||
static_cast<X86Operand*>(Operands[1])->isMem() &&
|
||||
static_cast<X86Operand*>(Operands[2])->isReg()) {
|
||||
@ -860,7 +861,8 @@ ParseInstruction(StringRef Name, SMLoc NameLoc,
|
||||
// The assembler accepts "testX <reg>, <mem>" and "testX <mem>, <reg>" as
|
||||
// synonyms. Our tables only have the "<mem>, <reg>" form, so if we see the
|
||||
// other operand order, swap them.
|
||||
if (Name == "testb" || Name == "testw" || Name == "testl" || Name == "testq")
|
||||
if (Name == "testb" || Name == "testw" || Name == "testl" || Name == "testq"||
|
||||
Name == "test")
|
||||
if (Operands.size() == 3 &&
|
||||
static_cast<X86Operand*>(Operands[1])->isReg() &&
|
||||
static_cast<X86Operand*>(Operands[2])->isMem()) {
|
||||
|
@ -174,6 +174,12 @@ xchgl 368(%rax),%ecx
|
||||
xchgl %ecx, 368(%rax)
|
||||
// CHECK: xchgl %ecx, 368(%rax)
|
||||
|
||||
// rdar://8407548
|
||||
xchg 0xdeadbeef(%rbx,%rcx,8),%bl
|
||||
// CHECK: xchgb %bl, 3735928559(%rbx,%rcx,8)
|
||||
|
||||
|
||||
|
||||
// PR7254
|
||||
lock incl 1(%rsp)
|
||||
// CHECK: lock
|
||||
|
Loading…
Reference in New Issue
Block a user