diff options
author | Duncan Sands <baldrick@free.fr> | 2010-11-13 12:16:27 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-11-13 12:16:27 +0000 |
commit | 768b87c085c6f608608a848a63a061ffc13de3c1 (patch) | |
tree | 216f0c120aaf0143f3fe859b23ab76a116669038 /lib/Analysis/LoopInfo.cpp | |
parent | c93989a0606daff0e96c34790e603b1dd5ca966e (diff) | |
download | external_llvm-768b87c085c6f608608a848a63a061ffc13de3c1.zip external_llvm-768b87c085c6f608608a848a63a061ffc13de3c1.tar.gz external_llvm-768b87c085c6f608608a848a63a061ffc13de3c1.tar.bz2 |
Fix typo pointed out by Trevor Harmon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119001 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LoopInfo.cpp')
-rw-r--r-- | lib/Analysis/LoopInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/LoopInfo.cpp b/lib/Analysis/LoopInfo.cpp index 447c8a6..0583140 100644 --- a/lib/Analysis/LoopInfo.cpp +++ b/lib/Analysis/LoopInfo.cpp @@ -198,7 +198,7 @@ Value *Loop::getTripCount() const { /// 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(); |