summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-11-30 19:08:32 +0000
committerJim Grosbach <grosbach@apple.com>2010-11-30 19:08:32 +0000
commit12822af16ae2218e5cdfdf4976e66d81417edda6 (patch)
treeacc8e493b2d1a43ffbdcf222beddae7d50d7f7d8 /utils
parent37cc2f121dd7718c2f88c5d6ba99e5837fc7ca95 (diff)
downloadllvm-12822af16ae2218e5cdfdf4976e66d81417edda6.tar.gz
llvm-12822af16ae2218e5cdfdf4976e66d81417edda6.tar.bz2
llvm-12822af16ae2218e5cdfdf4976e66d81417edda6.tar.xz
The VLDMQ/VSTMQ instructions are reprented as true Pseudo-insts now (i.e.,
no extra encoding information), so we no longer need to special case them here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120444 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/ARMDecoderEmitter.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/utils/TableGen/ARMDecoderEmitter.cpp b/utils/TableGen/ARMDecoderEmitter.cpp
index 78f1256cb5..64e25c9ad8 100644
--- a/utils/TableGen/ARMDecoderEmitter.cpp
+++ b/utils/TableGen/ARMDecoderEmitter.cpp
@@ -1580,11 +1580,6 @@ ARMDEBackend::populateInstruction(const CodeGenInstruction &CGI,
Name == "MOVr_TC")
return false;
- // VLDMQ/VSTMQ can be handled with the more generic VLDMD/VSTMD.
- if (Name == "VLDMQ" || Name == "VLDMQ_UPD" ||
- Name == "VSTMQ" || Name == "VSTMQ_UPD")
- return false;
-
//
// The following special cases are for conflict resolutions.
//