Move class into an anonymous namespace.
authorBenjamin Kramer <benny.kra@googlemail.com>
Mon, 13 Jun 2011 18:38:56 +0000 (18:38 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Mon, 13 Jun 2011 18:38:56 +0000 (18:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132925 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/BranchProbabilityInfo.cpp

index 812fac0bb751d3566939417f03ce1c1d8e115c61..a2e8960359e679a160ef0f550d54aab2220516cc 100644 (file)
@@ -25,7 +25,7 @@ INITIALIZE_PASS_END(BranchProbabilityInfo, "branch-prob",
 
 char BranchProbabilityInfo::ID = 0;
 
-
+namespace {
 // Please note that BranchProbabilityAnalysis is not a FunctionPass.
 // It is created by BranchProbabilityInfo (which is a FunctionPass), which
 // provides a clear interface. Thanks to that, all heuristics and other
@@ -143,6 +143,7 @@ public:
 
   bool runOnFunction(Function &F);
 };
+} // end anonymous namespace
 
 // Calculate Edge Weights using "Return Heuristics". Predict a successor which
 // leads directly to Return Instruction will not be taken.