diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-27 06:57:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-27 06:57:55 +0000 |
commit | c83769ae33024fb86ff63ab46f75a2bfed7975d3 (patch) | |
tree | 5cab5bd262f8cb1763fc9f7651430b65bfef6247 /include | |
parent | 5b5bc3032f97cfa7bfa3e22282d3a9c1ed05eec6 (diff) | |
download | external_llvm-c83769ae33024fb86ff63ab46f75a2bfed7975d3.zip external_llvm-c83769ae33024fb86ff63ab46f75a2bfed7975d3.tar.gz external_llvm-c83769ae33024fb86ff63ab46f75a2bfed7975d3.tar.bz2 |
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')
-rw-r--r-- | include/llvm/Analysis/Dominators.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/Analysis/Dominators.h b/include/llvm/Analysis/Dominators.h index 9f44d3f..d73b407 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: |