From: Bill Wendling Date: Thu, 18 Aug 2011 17:57:57 +0000 (+0000) Subject: Use static instead of anonymous namespace. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d4770144d46992be0321d3cd4dc9315da1aa4d5d;p=oota-llvm.git Use static instead of anonymous namespace. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137959 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Utils/BasicBlockUtils.cpp b/lib/Transforms/Utils/BasicBlockUtils.cpp index 127e7c854d1..8b2ca206ccd 100644 --- a/lib/Transforms/Utils/BasicBlockUtils.cpp +++ b/lib/Transforms/Utils/BasicBlockUtils.cpp @@ -314,13 +314,12 @@ BasicBlock *llvm::SplitBlock(BasicBlock *Old, Instruction *SplitPt, Pass *P) { return New; } -namespace { - /// UpdateAnalysisInformation - Update DominatorTree, LoopInfo, and LCCSA /// analysis information. -void UpdateAnalysisInformation(BasicBlock *OldBB, BasicBlock *NewBB, - BasicBlock *const *Preds, - unsigned NumPreds, Pass *P, bool &HasLoopExit) { +static void UpdateAnalysisInformation(BasicBlock *OldBB, BasicBlock *NewBB, + BasicBlock *const *Preds, + unsigned NumPreds, Pass *P, + bool &HasLoopExit) { if (!P) return; LoopInfo *LI = P->getAnalysisIfAvailable(); @@ -386,8 +385,6 @@ void UpdateAnalysisInformation(BasicBlock *OldBB, BasicBlock *NewBB, } } -} // end anonymous namespace - /// SplitBlockPredecessors - This method transforms BB by introducing a new /// basic block into the function, and moving some of the predecessors of BB to /// be predecessors of the new block. The new predecessors are indicated by the