mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-02 04:39: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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160946 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e6c97ffb0d
commit
87a9ece154
@ -500,7 +500,7 @@ bool RecognizableInstr::has256BitOperands() const {
|
|||||||
for (unsigned operandIndex = 0; operandIndex < numOperands; ++operandIndex) {
|
for (unsigned operandIndex = 0; operandIndex < numOperands; ++operandIndex) {
|
||||||
const std::string &recName = OperandList[operandIndex].Rec->getName();
|
const std::string &recName = OperandList[operandIndex].Rec->getName();
|
||||||
|
|
||||||
if (!recName.compare("VR256") || !recName.compare("f256mem")) {
|
if (!recName.compare("VR256")) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user