summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/SimplifyCFG.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Transforms/Scalar/SimplifyCFG.cpp')
-rw-r--r--lib/Transforms/Scalar/SimplifyCFG.cpp10
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.
//
//===----------------------------------------------------------------------===//