summaryrefslogtreecommitdiff
path: root/include/llvm/Analysis
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-27 06:57:55 +0000
committerChris Lattner <sabre@nondot.org>2006-05-27 06:57:55 +0000
commitc83769ae33024fb86ff63ab46f75a2bfed7975d3 (patch)
tree5cab5bd262f8cb1763fc9f7651430b65bfef6247 /include/llvm/Analysis
parent5b5bc3032f97cfa7bfa3e22282d3a9c1ed05eec6 (diff)
downloadllvm-c83769ae33024fb86ff63ab46f75a2bfed7975d3.tar.gz
llvm-c83769ae33024fb86ff63ab46f75a2bfed7975d3.tar.bz2
llvm-c83769ae33024fb86ff63ab46f75a2bfed7975d3.tar.xz
Fix pastos in comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28522 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r--include/llvm/Analysis/Dominators.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/Analysis/Dominators.h b/include/llvm/Analysis/Dominators.h
index 9f44d3fb75..d73b407d21 100644
--- a/include/llvm/Analysis/Dominators.h
+++ b/include/llvm/Analysis/Dominators.h
@@ -574,7 +574,8 @@ template <> struct GraphTraits<DominatorTree*>
};
//===----------------------------------------------------------------------===//
-/// DominanceFrontier - Calculate the dominance frontiers for a function.
+/// DominanceFrontierBase - Common base class for computing forward and inverse
+/// dominance frontiers for a function.
///
class DominanceFrontierBase : public DominatorBase {
public:
@@ -620,8 +621,8 @@ public:
//===-------------------------------------
-/// DominatorTree Class - Concrete subclass of DominatorTreeBase that is used to
-/// compute a normal dominator tree.
+/// DominanceFrontier Class - Concrete subclass of DominanceFrontierBase that is
+/// used to compute a forward dominator frontiers.
///
class DominanceFrontier : public DominanceFrontierBase {
public: