From ba12a9d1fb9d8c6e33cf78525e38a8810c62547e Mon Sep 17 00:00:00 2001 From: Chris Lattner <sabre@nondot.org> Date: Mon, 14 May 2007 01:54:16 +0000 Subject: [PATCH] update comments llvm-svn: 37027 --- llvm/include/llvm/Analysis/Dominators.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/llvm/include/llvm/Analysis/Dominators.h b/llvm/include/llvm/Analysis/Dominators.h index cf728e17f1c1..e9c37a5746d3 100644 --- a/llvm/include/llvm/Analysis/Dominators.h +++ b/llvm/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. // //===----------------------------------------------------------------------===// -- GitLab