mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-12 15:51:35 +00:00
Remove check for f256mem from has256BitOperands as nothing depended on it and it isn't the only 256-bit memory type anyway.
llvm-svn: 160946
This commit is contained in:
parent
8afab784a4
commit
5e5b8cbcd3
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user