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 | e5ac78e16ee9ef0cfdc47728a3d413eb837cef71 (patch) | |
tree | 6ce12d4e015a37b60b0e685e5c2a5a8dde8bcb0d /llvm/lib/Analysis/LoopInfo.cpp | |
parent | 9430eb489c3be1f8966a0a8743411bd4597d536e (diff) | |
download | bcm5719-llvm-e5ac78e16ee9ef0cfdc47728a3d413eb837cef71.tar.gz bcm5719-llvm-e5ac78e16ee9ef0cfdc47728a3d413eb837cef71.zip |
Fix typo pointed out by Trevor Harmon.
llvm-svn: 119001
Diffstat (limited to 'llvm/lib/Analysis/LoopInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/LoopInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/LoopInfo.cpp b/llvm/lib/Analysis/LoopInfo.cpp index 447c8a6ee4e..05831402f40 100644 --- a/llvm/lib/Analysis/LoopInfo.cpp +++ b/llvm/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(); |