aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-05-14 01:54:16 +0000
committerChris Lattner <sabre@nondot.org>2007-05-14 01:54:16 +0000
commitd82dc669447c0296e5e0444afde834dd802096b3 (patch)
tree55d190e565ac4e6309e47bc033d4659fe6ccdfa3 /include
parent69944e85aa63d5a067692f6e680b6939fe7d4131 (diff)
downloadexternal_llvm-d82dc669447c0296e5e0444afde834dd802096b3.zip
external_llvm-d82dc669447c0296e5e0444afde834dd802096b3.tar.gz
external_llvm-d82dc669447c0296e5e0444afde834dd802096b3.tar.bz2
update comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37027 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/Dominators.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/Analysis/Dominators.h b/include/llvm/Analysis/Dominators.h
index cf728e1..e9c37a5 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.
//
//===----------------------------------------------------------------------===//