diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-12-03 02:25:59 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-12-03 02:25:59 +0000 |
commit | 6cfab3748ce62067f7ca9b731295e8b39fd72258 (patch) | |
tree | 706a67e2075efca27199056b3f59d159afdc8a8c /utils/TableGen/ARMDecoderEmitter.cpp | |
parent | 371716cdee6442c5cb51831dc949518f0fb7a281 (diff) |
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
Diffstat (limited to 'utils/TableGen/ARMDecoderEmitter.cpp')
-rw-r--r-- | utils/TableGen/ARMDecoderEmitter.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/utils/TableGen/ARMDecoderEmitter.cpp b/utils/TableGen/ARMDecoderEmitter.cpp index 22b2c03736..64e25c9ad8 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. |