diff options
author | Philip Reames <listmail@philipreames.com> | 2016-01-21 17:32:12 +0000 |
---|---|---|
committer | Philip Reames <listmail@philipreames.com> | 2016-01-21 17:32:12 +0000 |
commit | 82e0f15f86fe2e37317fef23848dd503d9d09e16 (patch) | |
tree | 9e9fe107a0f2cacee516e9ee75eb1a5111658c58 | |
parent | 10494aca0538f8b16fb2d6051fa18335e0f1b7ea (diff) | |
download | bcm5719-llvm-82e0f15f86fe2e37317fef23848dd503d9d09e16.tar.gz bcm5719-llvm-82e0f15f86fe2e37317fef23848dd503d9d09e16.zip |
Fix a type in a comment
Thanks to Sean Silva for pointing it out.
llvm-svn: 258410
-rw-r--r-- | llvm/include/llvm/Analysis/LoopInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Analysis/LoopInfo.h b/llvm/include/llvm/Analysis/LoopInfo.h index 787c24b9770..03b7ccf46ea 100644 --- a/llvm/include/llvm/Analysis/LoopInfo.h +++ b/llvm/include/llvm/Analysis/LoopInfo.h @@ -353,7 +353,7 @@ raw_ostream& operator<<(raw_ostream &OS, const LoopBase<BlockT, LoopT> &Loop) { extern template class LoopBase<BasicBlock, Loop>; -/// Represents a single loop in the control flow graph. Not that not all SCCs +/// Represents a single loop in the control flow graph. Note that not all SCCs /// in the CFG are neccessarily loops. class Loop : public LoopBase<BasicBlock, Loop> { public: |