mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-23 01:24:30 +00:00
Rename Instruction::isIdenticalTo to Instruction::isIdenticalToWhenDefined,
and introduce a new Instruction::isIdenticalTo which tests for full identity, including the SubclassOptionalData flags. Also, fix the Instruction::clone implementations to preserve the SubclassOptionalData flags. Finally, teach several optimizations how to handle SubclassOptionalData correctly, given these changes. This fixes the counterintuitive behavior of isIdenticalTo not comparing the full value, and clone not returning an identical clone, as well as some subtle bugs that could be caused by these. Thanks to Nick Lewycky for reporting this, and for an initial patch! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80038 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -188,7 +188,8 @@ static bool
|
||||
isEquivalentOperation(const Instruction *I1, const Instruction *I2) {
|
||||
if (I1->getOpcode() != I2->getOpcode() ||
|
||||
I1->getNumOperands() != I2->getNumOperands() ||
|
||||
!isEquivalentType(I1->getType(), I2->getType()))
|
||||
!isEquivalentType(I1->getType(), I2->getType()) ||
|
||||
!I1->hasSameSubclassOptionalData(I2))
|
||||
return false;
|
||||
|
||||
// We have two instructions of identical opcode and #operands. Check to see
|
||||
|
Reference in New Issue
Block a user