summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-10-20 22:44:45 +0000
committerChris Lattner <sabre@nondot.org>2006-10-20 22:44:45 +0000
commit96fd2b28f188bf1f77b4090d6dff0539cdc7c34d (patch)
tree932e1da57a4f8772f8027e04fdca78c3c1ccd932 /llvm
parent33f5af09e4d7a6fd447b9f204eb2b17e598794c6 (diff)
downloadbcm5719-llvm-96fd2b28f188bf1f77b4090d6dff0539cdc7c34d.tar.gz
bcm5719-llvm-96fd2b28f188bf1f77b4090d6dff0539cdc7c34d.zip
typo
llvm-svn: 31089
Diffstat (limited to 'llvm')
-rw-r--r--llvm/include/llvm/CodeGen/MachineInstr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/CodeGen/MachineInstr.h b/llvm/include/llvm/CodeGen/MachineInstr.h
index ca38fe68f71..25a7b3fedb6 100644
--- a/llvm/include/llvm/CodeGen/MachineInstr.h
+++ b/llvm/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)))
OpenPOWER on IntegriCloud