mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
TableGen should not ignore BX instructions for the ARM disassembler. pr9368.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126931 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
acc9e7315c
commit
1473f35c47
@ -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