From 87a9ece154acdf2164094e6b5a47bac48a53aa4d Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Mon, 30 Jul 2012 04:53:00 +0000 Subject: [PATCH] Remove check for f256mem from has256BitOperands as nothing depended on it and it isn't the only 256-bit memory type anyway. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160946 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/TableGen/X86RecognizableInstr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/TableGen/X86RecognizableInstr.cpp b/utils/TableGen/X86RecognizableInstr.cpp index 5b4e43a5199..cf89fd7d783 100644 --- a/utils/TableGen/X86RecognizableInstr.cpp +++ b/utils/TableGen/X86RecognizableInstr.cpp @@ -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; } }