TableGen should not ignore BX instructions for the ARM disassembler. pr9368.

llvm-svn: 126931
This commit is contained in:
Bob Wilson 2011-03-03 07:19:52 +00:00
parent ab8881accd
commit 6f6d739b6e
2 changed files with 4 additions and 1 deletions

View File

@ -136,3 +136,6 @@
# CHECK: blxeq r5
0x35 0xff 0x2f 0x01
# CHECK: bx r12
0x1c 0xff 0x2f 0xe1

View File

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