From: Chris Lattner Date: Fri, 20 Oct 2006 22:44:45 +0000 (+0000) Subject: typo X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=846c1b49365be588b5aaddd02916e46c2422ae6f;p=oota-llvm.git typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31089 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index ca38fe68f71..25a7b3fedb6 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -291,7 +291,7 @@ public: /// opcode and same operands as) the specified instruction. bool isIdenticalTo(const MachineInstr *Other) const { if (Other->getOpcode() != getOpcode() || - getNumOperands() != getNumOperands()) + Other->getNumOperands() != getNumOperands()) return false; for (unsigned i = 0, e = getNumOperands(); i != e; ++i) if (!getOperand(i).isIdenticalTo(Other->getOperand(i)))