From: Jim Grosbach Date: Tue, 30 Nov 2010 19:08:32 +0000 (+0000) Subject: The VLDMQ/VSTMQ instructions are reprented as true Pseudo-insts now (i.e., X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=12822af16ae2218e5cdfdf4976e66d81417edda6;p=oota-llvm.git 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 --- diff --git a/utils/TableGen/ARMDecoderEmitter.cpp b/utils/TableGen/ARMDecoderEmitter.cpp index 78f1256cb5b..64e25c9ad8c 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. //