mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-03 11:24:18 +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:
@ -136,3 +136,6 @@
|
|||||||
|
|
||||||
# CHECK: blxeq r5
|
# CHECK: blxeq r5
|
||||||
0x35 0xff 0x2f 0x01
|
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;
|
if (Name == "B") return false;
|
||||||
|
|
||||||
// Ignore the non-Darwin BL instructions and the TPsoft (TLS) instruction.
|
// 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")
|
Name == "BLX_pred" || Name == "TPsoft")
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user