mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 07:09:08 +00:00
TableGen should not ignore BX instructions for the ARM disassembler. pr9368.
llvm-svn: 126931
This commit is contained in:
parent
72ccdfe148
commit
e24bee9ce8
@ -136,3 +136,6 @@
|
||||
|
||||
# CHECK: blxeq r5
|
||||
0x35 0xff 0x2f 0x01
|
||||
|
||||
# CHECK: bx r12
|
||||
0x1c 0xff 0x2f 0xe1
|
||||
|
@ -1631,7 +1631,7 @@ ARMDEBackend::populateInstruction(const CodeGenInstruction &CGI,
|
||||
if (Name == "B") return false;
|
||||
|
||||
// Ignore the non-Darwin BL instructions and the TPsoft (TLS) instruction.
|
||||
if (Name == "BL" || Name == "BL_pred" || Name == "BLX" || Name == "BX" ||
|
||||
if (Name == "BL" || Name == "BL_pred" || Name == "BLX" ||
|
||||
Name == "BLX_pred" || Name == "TPsoft")
|
||||
return false;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user