[llvm-commits] [llvm] r160946 - /llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp

Craig Topper craig.topper at gmail.com
Sun Jul 29 21:53:00 PDT 2012


Author: ctopper
Date: Sun Jul 29 23:53:00 2012
New Revision: 160946

URL: http://llvm.org/viewvc/llvm-project?rev=160946&view=rev
Log:
Remove check for f256mem from has256BitOperands as nothing depended on it and it isn't the only 256-bit memory type anyway.

Modified:
    llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp

Modified: llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp?rev=160946&r1=160945&r2=160946&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp (original)
+++ llvm/trunk/utils/TableGen/X86RecognizableInstr.cpp Sun Jul 29 23:53:00 2012
@@ -500,7 +500,7 @@
   for (unsigned operandIndex = 0; operandIndex < numOperands; ++operandIndex) {
     const std::string &recName = OperandList[operandIndex].Rec->getName();
 
-    if (!recName.compare("VR256") || !recName.compare("f256mem")) {
+    if (!recName.compare("VR256")) {
       return true;
     }
   }





More information about the llvm-commits mailing list