[llvm-commits] [llvm] r91742 - /llvm/trunk/lib/Analysis/ScalarEvolution.cpp

Dan Gohman gohman at apple.com
Fri Dec 18 17:46:34 PST 2009


Author: djg
Date: Fri Dec 18 19:46:34 2009
New Revision: 91742

URL: http://llvm.org/viewvc/llvm-project?rev=91742&view=rev
Log:
Fix a spello in a comment that Nick spotted.

Modified:
    llvm/trunk/lib/Analysis/ScalarEvolution.cpp

Modified: llvm/trunk/lib/Analysis/ScalarEvolution.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/ScalarEvolution.cpp?rev=91742&r1=91741&r2=91742&view=diff

==============================================================================
--- llvm/trunk/lib/Analysis/ScalarEvolution.cpp (original)
+++ llvm/trunk/lib/Analysis/ScalarEvolution.cpp Fri Dec 18 19:46:34 2009
@@ -1460,7 +1460,7 @@
                                              AddRec->op_end());
       AddRecOps[0] = getAddExpr(LIOps);
 
-      // It's tempting to propogate NUW/NSW flags here, but nuw/nsw addition
+      // It's tempting to propagate NUW/NSW flags here, but nuw/nsw addition
       // is not associative so this isn't necessarily safe.
       const SCEV *NewRec = getAddRecExpr(AddRecOps, AddRec->getLoop());
 
@@ -1639,7 +1639,7 @@
         }
       }
 
-      // It's tempting to propogate the NSW flag here, but nsw multiplication
+      // It's tempting to propagate the NSW flag here, but nsw multiplication
       // is not associative so this isn't necessarily safe.
       const SCEV *NewRec = getAddRecExpr(NewOps, AddRec->getLoop());
 





More information about the llvm-commits mailing list