update comments
authorChris Lattner <sabre@nondot.org>
Mon, 14 May 2007 01:54:16 +0000 (01:54 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 14 May 2007 01:54:16 +0000 (01:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37027 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/Dominators.h

index cf728e17f1c19136c6016ac0e94ddd6dbd3a4dcb..e9c37a5746d33291391c653ca0729809df524adc 100644 (file)
@@ -8,8 +8,7 @@
 //===----------------------------------------------------------------------===//
 //
 // This file defines the following classes:
-//  1. DominatorTree: Represent the ImmediateDominator as an explicit tree
-//     structure.
+//  1. DominatorTree: Represent dominators as an explicit tree structure.
 //  2. ETForest: Efficient data structure for dominance comparisons and 
 //     nearest-common-ancestor queries.
 //  3. DominanceFrontier: Calculate and hold the dominance frontier for a
@@ -17,7 +16,7 @@
 //
 //  These data structures are listed in increasing order of complexity.  It
 //  takes longer to calculate the dominator frontier, for example, than the
-//  ImmediateDominator mapping.
+//  DominatorTree mapping.
 //
 //===----------------------------------------------------------------------===//