[llvm-commits] [llvm] r43553 - /llvm/trunk/lib/Transforms/Scalar/LICM.cpp
Dan Gohman
djg at cray.com
Wed Oct 31 07:35:40 PDT 2007
Author: djg
Date: Wed Oct 31 09:35:39 2007
New Revision: 43553
URL: http://llvm.org/viewvc/llvm-project?rev=43553&view=rev
Log:
Fix a typo in a comment.
Modified:
llvm/trunk/lib/Transforms/Scalar/LICM.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/LICM.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/LICM.cpp?rev=43553&r1=43552&r2=43553&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/LICM.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/LICM.cpp Wed Oct 31 09:35:39 2007
@@ -802,7 +802,7 @@
// If one use of value V inside the loop is safe then it is OK to promote
// this value. On the otherside if there is not any unsafe use inside the
- // looop then also it is OK to promote this value. Otherwise it is
+ // loop then also it is OK to promote this value. Otherwise it is
// unsafe to promote this value.
if (PointerOk) {
bool oneSafeUse = false;
More information about the llvm-commits
mailing list