From d82dc669447c0296e5e0444afde834dd802096b3 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 14 May 2007 01:54:16 +0000 Subject: [PATCH] update comments git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37027 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/Dominators.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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. // //===----------------------------------------------------------------------===//