Fix typos in assert messages.

llvm-svn: 128002
This commit is contained in:
Jay Foad 2011-03-21 16:38:22 +00:00
parent 04fe64f899
commit 4dc36c66e5
1 changed files with 2 additions and 2 deletions

View File

@ -95,11 +95,11 @@ public:
OperandList[i] = Val;
}
const Use &getOperandUse(unsigned i) const {
assert(i < NumOperands && "getOperand() out of range!");
assert(i < NumOperands && "getOperandUse() out of range!");
return OperandList[i];
}
Use &getOperandUse(unsigned i) {
assert(i < NumOperands && "getOperand() out of range!");
assert(i < NumOperands && "getOperandUse() out of range!");
return OperandList[i];
}