[llvm-commits] [llvm] r78671 - /llvm/trunk/lib/VMCore/Value.cpp

Dan Gohman gohman at apple.com
Tue Aug 11 08:53:15 PDT 2009


Author: djg
Date: Tue Aug 11 10:53:15 2009
New Revision: 78671

URL: http://llvm.org/viewvc/llvm-project?rev=78671&view=rev
Log:
Fix a typo in an assertion string.

Modified:
    llvm/trunk/lib/VMCore/Value.cpp

Modified: llvm/trunk/lib/VMCore/Value.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Value.cpp?rev=78671&r1=78670&r2=78671&view=diff

==============================================================================
--- llvm/trunk/lib/VMCore/Value.cpp (original)
+++ llvm/trunk/lib/VMCore/Value.cpp Tue Aug 11 10:53:15 2009
@@ -553,7 +553,7 @@
   if (From == To) return;   // Duh what?
 
   assert((!isa<Constant>(this) || isa<GlobalValue>(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?





More information about the llvm-commits mailing list