From a1244304925a5ae80e671af3a3a2ad4679071bfa Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 11 Aug 2009 15:53:15 +0000 Subject: [PATCH] Fix a typo in an assertion string. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78671 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Value.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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? -- 2.34.1