Remove check for f256mem from has256BitOperands as nothing depended on it and it...
authorCraig Topper <craig.topper@gmail.com>
Mon, 30 Jul 2012 04:53:00 +0000 (04:53 +0000)
committerCraig Topper <craig.topper@gmail.com>
Mon, 30 Jul 2012 04:53:00 +0000 (04:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160946 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/X86RecognizableInstr.cpp

index 5b4e43a51997ea334a4f4aa7d385e91e75455402..cf89fd7d7839c8b320f3b6f6432208803154ba2c 100644 (file)
@@ -500,7 +500,7 @@ bool RecognizableInstr::has256BitOperands() const {
   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;
     }
   }