diff options
Diffstat (limited to 'utils/TableGen/ARMDecoderEmitter.cpp')
-rw-r--r-- | utils/TableGen/ARMDecoderEmitter.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/utils/TableGen/ARMDecoderEmitter.cpp b/utils/TableGen/ARMDecoderEmitter.cpp index 4c081875ee..3f2c55f424 100644 --- a/utils/TableGen/ARMDecoderEmitter.cpp +++ b/utils/TableGen/ARMDecoderEmitter.cpp @@ -1592,14 +1592,6 @@ ARMDEBackend::populateInstruction(const CodeGenInstruction &CGI, // better off using the generic RSCri and RSCrs instructions. if (Name == "RSCSri" || Name == "RSCSrs") return false; - // FCYPScc, FCYPDcc, FNEGScc, and FNEGDcc are used in the compiler - // to implement conditional moves. We can ignore them in favor of - // their more generic versions of instructions. See also - // SDNode *ARMDAGToDAGISel::Select(SDValue Op). - if (Name == "FCPYScc" || Name == "FCPYDcc" || Name == "FNEGScc" || - Name == "FNEGDcc") - return false; - // Bcc is in a more generic form than B. Ignore B when decoding. if (Name == "B") return false; |