summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2011-06-30 19:38:01 +0000
committerJim Grosbach <grosbach@apple.com>2011-06-30 19:38:01 +0000
commitff97eb0cf4394090570feaa327d1237ba4b935e2 (patch)
tree0a59aa3f98c83353e729ab4aa4b7f713f17d18ee /utils
parent6e0ce24e0ca8b0dc05872b9b4cec3a18972bee40 (diff)
downloadllvm-ff97eb0cf4394090570feaa327d1237ba4b935e2.tar.gz
llvm-ff97eb0cf4394090570feaa327d1237ba4b935e2.tar.bz2
llvm-ff97eb0cf4394090570feaa327d1237ba4b935e2.tar.xz
Pseudo-ize the Thumb tTPsoft instruction.
It's just a call to a special helper function. Get rid of the T2 variant entirely, as it's identical to the Thumb1 version. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134178 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/ARMDecoderEmitter.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/utils/TableGen/ARMDecoderEmitter.cpp b/utils/TableGen/ARMDecoderEmitter.cpp
index b3aac9898b..a7cbbcd84b 100644
--- a/utils/TableGen/ARMDecoderEmitter.cpp
+++ b/utils/TableGen/ARMDecoderEmitter.cpp
@@ -1624,10 +1624,6 @@ ARMDEBackend::populateInstruction(const CodeGenInstruction &CGI,
if (Name == "tBX_RET" || Name == "tBX_RET_vararg")
return false;
- // Ignore the TPsoft (TLS) instructions, which conflict with tBLr9.
- if (Name == "tTPsoft" || Name == "t2TPsoft")
- return false;
-
// Ignore tADR, prefer tADDrPCi.
if (Name == "tADR")
return false;