mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-21 03:32:21 +00:00
typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31089 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8ace2cd034
commit
846c1b4936
@ -291,7 +291,7 @@ public:
|
|||||||
/// opcode and same operands as) the specified instruction.
|
/// opcode and same operands as) the specified instruction.
|
||||||
bool isIdenticalTo(const MachineInstr *Other) const {
|
bool isIdenticalTo(const MachineInstr *Other) const {
|
||||||
if (Other->getOpcode() != getOpcode() ||
|
if (Other->getOpcode() != getOpcode() ||
|
||||||
getNumOperands() != getNumOperands())
|
Other->getNumOperands() != getNumOperands())
|
||||||
return false;
|
return false;
|
||||||
for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
|
for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
|
||||||
if (!getOperand(i).isIdenticalTo(Other->getOperand(i)))
|
if (!getOperand(i).isIdenticalTo(Other->getOperand(i)))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user