summaryrefslogtreecommitdiff
path: root/utils/TableGen
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2012-07-30 04:53:00 +0000
committerCraig Topper <craig.topper@gmail.com>2012-07-30 04:53:00 +0000
commit87a9ece154acdf2164094e6b5a47bac48a53aa4d (patch)
treefebc4468f1c1764528840ee75a89ac33857d69da /utils/TableGen
parente6c97ffb0d69125d989acc7e1a62c182096dd4e2 (diff)
downloadllvm-87a9ece154acdf2164094e6b5a47bac48a53aa4d.tar.gz
llvm-87a9ece154acdf2164094e6b5a47bac48a53aa4d.tar.bz2
llvm-87a9ece154acdf2164094e6b5a47bac48a53aa4d.tar.xz
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
Diffstat (limited to 'utils/TableGen')
-rw-r--r--utils/TableGen/X86RecognizableInstr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/X86RecognizableInstr.cpp b/utils/TableGen/X86RecognizableInstr.cpp
index 5b4e43a519..cf89fd7d78 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;
}
}