[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineInstr.h

Chris Lattner sabre at nondot.org
Fri Oct 20 15:44:59 PDT 2006



Changes in directory llvm/include/llvm/CodeGen:

MachineInstr.h updated: 1.190 -> 1.191
---
Log message:

typo


---
Diffs of the changes:  (+1 -1)

 MachineInstr.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/CodeGen/MachineInstr.h
diff -u llvm/include/llvm/CodeGen/MachineInstr.h:1.190 llvm/include/llvm/CodeGen/MachineInstr.h:1.191
--- llvm/include/llvm/CodeGen/MachineInstr.h:1.190	Fri Oct 20 17:39:36 2006
+++ llvm/include/llvm/CodeGen/MachineInstr.h	Fri Oct 20 17:44:45 2006
@@ -291,7 +291,7 @@
   /// 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)))






More information about the llvm-commits mailing list