diff options
author | Owen Anderson <resistor@mac.com> | 2007-10-16 22:59:15 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2007-10-16 22:59:15 +0000 |
commit | 280f8a2ecedc213372402fe221e2b1a613816f7d (patch) | |
tree | 6d2a08228b79ee02a1f16070caef85ce3c581cf4 /include/llvm/Analysis | |
parent | 11923cc05efc4b7589c6c33e39a87459132dda06 (diff) | |
download | external_llvm-280f8a2ecedc213372402fe221e2b1a613816f7d.zip external_llvm-280f8a2ecedc213372402fe221e2b1a613816f7d.tar.gz external_llvm-280f8a2ecedc213372402fe221e2b1a613816f7d.tar.bz2 |
Fix some formatting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43049 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r-- | include/llvm/Analysis/Dominators.h | 36 |
1 files changed, 21 insertions, 15 deletions
diff --git a/include/llvm/Analysis/Dominators.h b/include/llvm/Analysis/Dominators.h index 855180d..3d674e7 100644 --- a/include/llvm/Analysis/Dominators.h +++ b/include/llvm/Analysis/Dominators.h @@ -443,23 +443,29 @@ public: } protected: - template<class GraphT> friend void Compress(DominatorTreeBase<typename GraphT::NodeType>& DT, - typename GraphT::NodeType* VIn); - template<class GraphT> friend typename GraphT::NodeType* Eval( - DominatorTreeBase<typename GraphT::NodeType>& DT, - typename GraphT::NodeType* V); - template<class GraphT> friend void Link(DominatorTreeBase<typename GraphT::NodeType>& DT, - typename GraphT::NodeType* V, - typename GraphT::NodeType* W, - typename DominatorTreeBase<typename GraphT::NodeType>::InfoRec &WInfo); + template<class GraphT> + friend void Compress(DominatorTreeBase<typename GraphT::NodeType>& DT, + typename GraphT::NodeType* VIn); + + template<class GraphT> + friend typename GraphT::NodeType* Eval( + DominatorTreeBase<typename GraphT::NodeType>& DT, + typename GraphT::NodeType* V); + + template<class GraphT> + friend void Link(DominatorTreeBase<typename GraphT::NodeType>& DT, + typename GraphT::NodeType* V, + typename GraphT::NodeType* W, + typename DominatorTreeBase<typename GraphT::NodeType>::InfoRec &WInfo); - template<class GraphT> friend unsigned DFSPass( - DominatorTreeBase<typename GraphT::NodeType>& DT, - typename GraphT::NodeType* V, - unsigned N); + template<class GraphT> + friend unsigned DFSPass(DominatorTreeBase<typename GraphT::NodeType>& DT, + typename GraphT::NodeType* V, + unsigned N); - template<class N, class GraphT> friend void Calculate(DominatorTreeBase<typename GraphT::NodeType>& DT, - Function& F); + template<class N, class GraphT> + friend void Calculate(DominatorTreeBase<typename GraphT::NodeType>& DT, + Function& F); /// updateDFSNumbers - Assign In and Out numbers to the nodes while walking /// dominator tree in dfs order. |