[llvm-commits] [llvm] r62761 - /llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp

Chris Lattner sabre at nondot.org
Wed Jan 21 23:21:55 PST 2009


Author: lattner
Date: Thu Jan 22 01:21:55 2009
New Revision: 62761

URL: http://llvm.org/viewvc/llvm-project?rev=62761&view=rev
Log:
fix a typo

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp?rev=62761&r1=62760&r2=62761&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAG.cpp Thu Jan 22 01:21:55 2009
@@ -4380,7 +4380,7 @@
   assert(From != To.getNode() && "Cannot replace uses of with self");
 
   // Iterate over all the existing uses of From. This specifically avoids
-  // visiting any new uses of From that arrise while the replacement is
+  // visiting any new uses of From that arise while the replacement is
   // happening, because any such uses would be the result of CSE: If an
   // existing node looks like From after one of its operands is replaced
   // by To, we don't want to replace of all its users with To too.





More information about the llvm-commits mailing list