diff options
author | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-11-04 16:15:04 +0000 |
---|---|---|
committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2007-11-04 16:15:04 +0000 |
commit | c86b67742a3298c0a5a715b57a64f11107b8a3f2 (patch) | |
tree | 016039c25c32162e4a55beda22cdced04819ab2f /lib/Transforms/Scalar/SimplifyCFG.cpp | |
parent | 5544e64765c33afe15b9f427c355f6876ee4299f (diff) |
Finishing initial docs for all transformations in Passes.html.
Also cleaned up some comments in source files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43674 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/SimplifyCFG.cpp')
-rw-r--r-- | lib/Transforms/Scalar/SimplifyCFG.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Transforms/Scalar/SimplifyCFG.cpp b/lib/Transforms/Scalar/SimplifyCFG.cpp index 6b47ef7aae..5f0ab19b5e 100644 --- a/lib/Transforms/Scalar/SimplifyCFG.cpp +++ b/lib/Transforms/Scalar/SimplifyCFG.cpp @@ -8,13 +8,13 @@ //===----------------------------------------------------------------------===// // // This file implements dead code elimination and basic block merging. +// Specifically: // -// Specifically, this: -// * removes basic blocks with no predecessors -// * merges a basic block into its predecessor if there is only one and the +// * Removes basic blocks with no predecessors. +// * Merges a basic block into its predecessor if there is only one and the // predecessor only has one successor. -// * Eliminates PHI nodes for basic blocks with a single predecessor -// * Eliminates a basic block that only contains an unconditional branch +// * Eliminates PHI nodes for basic blocks with a single predecessor. +// * Eliminates a basic block that only contains an unconditional branch. // //===----------------------------------------------------------------------===// |