summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-03-11 23:24:15 +0000
committerJim Grosbach <grosbach@apple.com>2011-03-11 23:24:15 +0000
commit72422d38ba6fb2fb0bb9c0c75fe450b3e939ea21 (patch)
tree7ffd3bcd46c8fedabb8c1cc7748785be647b1dc4 /utils
parent3c5edaaf59dc051c6d540dd1041cf6bbbb12854f (diff)
downloadllvm-72422d38ba6fb2fb0bb9c0c75fe450b3e939ea21.tar.gz
llvm-72422d38ba6fb2fb0bb9c0c75fe450b3e939ea21.tar.bz2
llvm-72422d38ba6fb2fb0bb9c0c75fe450b3e939ea21.tar.xz
Pseudo-ize the ARM 'B' instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127510 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/ARMDecoderEmitter.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/utils/TableGen/ARMDecoderEmitter.cpp b/utils/TableGen/ARMDecoderEmitter.cpp
index 3f2c55f424..2ebfb2e477 100644
--- a/utils/TableGen/ARMDecoderEmitter.cpp
+++ b/utils/TableGen/ARMDecoderEmitter.cpp
@@ -1592,9 +1592,6 @@ ARMDEBackend::populateInstruction(const CodeGenInstruction &CGI,
// better off using the generic RSCri and RSCrs instructions.
if (Name == "RSCSri" || Name == "RSCSrs") return false;
- // Bcc is in a more generic form than B. Ignore B when decoding.
- 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 == "BLX_pred" || Name == "TPsoft")