diff options
author | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-05-08 17:46:35 +0000 |
---|---|---|
committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-05-08 17:46:35 +0000 |
commit | 829046b0b4d1ffc35b9f8ed134048c09191d3d98 (patch) | |
tree | 1faf3474e5dc184e1d54b5313e95a598671058dd /llvm/lib/Transforms/Scalar/LoopDeletion.cpp | |
parent | 49a594e6abe6e902cc6e5bc61322b56bf7c3a0ba (diff) | |
download | bcm5719-llvm-829046b0b4d1ffc35b9f8ed134048c09191d3d98.tar.gz bcm5719-llvm-829046b0b4d1ffc35b9f8ed134048c09191d3d98.zip |
Improve pass documentation and comments.
Patch by Matthijs Kooijman!
llvm-svn: 50861
Diffstat (limited to 'llvm/lib/Transforms/Scalar/LoopDeletion.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopDeletion.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopDeletion.cpp b/llvm/lib/Transforms/Scalar/LoopDeletion.cpp index 1ea2f6ac9ea..02a5ca98d97 100644 --- a/llvm/lib/Transforms/Scalar/LoopDeletion.cpp +++ b/llvm/lib/Transforms/Scalar/LoopDeletion.cpp @@ -7,10 +7,10 @@ // //===----------------------------------------------------------------------===// // -// This file implements the Dead Loop Elimination Pass. This pass is -// responsible for eliminating loops with non-infinite computable trip counts -// that have no side effects or volatile instructions, and do not contribute -// to the computation of the function's return value. +// This file implements the Dead Loop Deletion Pass. This pass is responsible +// for eliminating loops with non-infinite computable trip counts that have no +// side effects or volatile instructions, and do not contribute to the +// computation of the function's return value. // //===----------------------------------------------------------------------===// |