diff --git a/include/llvm/Analysis/Dominators.h b/include/llvm/Analysis/Dominators.h index cf728e17f1c..e9c37a5746d 100644 --- a/include/llvm/Analysis/Dominators.h +++ b/include/llvm/Analysis/Dominators.h @@ -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. // //===----------------------------------------------------------------------===//