From: Owen Anderson Date: Tue, 16 Oct 2007 22:59:15 +0000 (+0000) Subject: Fix some formatting. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=280f8a2ecedc213372402fe221e2b1a613816f7d;p=oota-llvm.git Fix some formatting. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43049 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/Dominators.h b/include/llvm/Analysis/Dominators.h index 855180d6953..3d674e7d818 100644 --- a/include/llvm/Analysis/Dominators.h +++ b/include/llvm/Analysis/Dominators.h @@ -443,23 +443,29 @@ public: } protected: - template friend void Compress(DominatorTreeBase& DT, - typename GraphT::NodeType* VIn); - template friend typename GraphT::NodeType* Eval( - DominatorTreeBase& DT, - typename GraphT::NodeType* V); - template friend void Link(DominatorTreeBase& DT, - typename GraphT::NodeType* V, - typename GraphT::NodeType* W, - typename DominatorTreeBase::InfoRec &WInfo); + template + friend void Compress(DominatorTreeBase& DT, + typename GraphT::NodeType* VIn); + + template + friend typename GraphT::NodeType* Eval( + DominatorTreeBase& DT, + typename GraphT::NodeType* V); + + template + friend void Link(DominatorTreeBase& DT, + typename GraphT::NodeType* V, + typename GraphT::NodeType* W, + typename DominatorTreeBase::InfoRec &WInfo); - template friend unsigned DFSPass( - DominatorTreeBase& DT, - typename GraphT::NodeType* V, - unsigned N); + template + friend unsigned DFSPass(DominatorTreeBase& DT, + typename GraphT::NodeType* V, + unsigned N); - template friend void Calculate(DominatorTreeBase& DT, - Function& F); + template + friend void Calculate(DominatorTreeBase& DT, + Function& F); /// updateDFSNumbers - Assign In and Out numbers to the nodes while walking /// dominator tree in dfs order.