diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index 2cdd55217cc..104f0377e85 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -553,7 +553,7 @@ void User::replaceUsesOfWith(Value *From, Value *To) { if (From == To) return; // Duh what? assert((!isa(this) || isa(this)) && - "Cannot call User::replaceUsesofWith on a constant!"); + "Cannot call User::replaceUsesOfWith on a constant!"); for (unsigned i = 0, E = getNumOperands(); i != E; ++i) if (getOperand(i) == From) { // Is This operand is pointing to oldval?