fix a typo
authorChris Lattner <sabre@nondot.org>
Thu, 22 Jan 2009 07:21:55 +0000 (07:21 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 22 Jan 2009 07:21:55 +0000 (07:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62761 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAG.cpp

index 2a456dce33d62c9ea2dce5e055c7da440dfe217d..e498647c447c5effe90838483abf2fa047884fd6 100644 (file)
@@ -4380,7 +4380,7 @@ void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To,
   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.