From: Bill Wendling Date: Fri, 3 Dec 2010 02:25:59 +0000 (+0000) Subject: I did it wrong. Don't disregard these encodings here. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6cfab3748ce62067f7ca9b731295e8b39fd72258;p=oota-llvm.git I did it wrong. Don't disregard these encodings here. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120786 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/ARMDecoderEmitter.cpp b/utils/TableGen/ARMDecoderEmitter.cpp index 22b2c037368..64e25c9ad8c 100644 --- a/utils/TableGen/ARMDecoderEmitter.cpp +++ b/utils/TableGen/ARMDecoderEmitter.cpp @@ -1731,13 +1731,6 @@ ARMDEBackend::populateInstruction(const CodeGenInstruction &CGI, Name == "tSpill" || Name == "tLDRcp" || Name == "tRestore" || Name == "t2LEApcrelJT" || Name == "t2MOVCCi16") return false; - - // tMOVgpr2tgpr, tMOVgpr2gpr, and tMOVtgpr2gpr are used by the code - // generator for special kinds of moves, but are encoded the same. Safely - // ignore them here. - if (Name == "tMOVgpr2tgpr" || Name == "tMOVgpr2gpr" || - Name == "tMOVtgpr2gpr") - return false; } // Dumps the instruction encoding format.