summaryrefslogtreecommitdiffstats
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
commit8b166186857ff33ccc281848880f5da33bd08706 (patch)
tree518cd3db33f6c778f668090fb6f8d1bd3345f571
parentf01da1a7dff55641818627a8838eda4ca072c236 (diff)
downloadbcm5719-llvm-8b166186857ff33ccc281848880f5da33bd08706.tar.gz
bcm5719-llvm-8b166186857ff33ccc281848880f5da33bd08706.zip
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. llvm-svn: 120444
-rw-r--r--llvm/utils/TableGen/ARMDecoderEmitter.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/utils/TableGen/ARMDecoderEmitter.cpp b/llvm/utils/TableGen/ARMDecoderEmitter.cpp
index 78f1256cb5b..64e25c9ad8c 100644
--- a/llvm/utils/TableGen/ARMDecoderEmitter.cpp
+++ b/llvm/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.
//
OpenPOWER on IntegriCloud