[llvm-commits] [llvm] r119001 - /llvm/trunk/lib/Analysis/LoopInfo.cpp

Duncan Sands baldrick at free.fr
Sat Nov 13 04:16:28 PST 2010


Author: baldrick
Date: Sat Nov 13 06:16:27 2010
New Revision: 119001

URL: http://llvm.org/viewvc/llvm-project?rev=119001&view=rev
Log:
Fix typo pointed out by Trevor Harmon.

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

Modified: llvm/trunk/lib/Analysis/LoopInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/LoopInfo.cpp?rev=119001&r1=119000&r2=119001&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/LoopInfo.cpp (original)
+++ llvm/trunk/lib/Analysis/LoopInfo.cpp Sat Nov 13 06:16:27 2010
@@ -198,7 +198,7 @@
 
 /// getSmallConstantTripCount - Returns the trip count of this loop as a
 /// normal unsigned value, if possible. Returns 0 if the trip count is unknown
-/// of not constant. Will also return 0 if the trip count is very large
+/// or not constant. Will also return 0 if the trip count is very large
 /// (>= 2^32)
 unsigned Loop::getSmallConstantTripCount() const {
   Value* TripCount = this->getTripCount();





More information about the llvm-commits mailing list