From: Duncan Sands Date: Fri, 20 Jul 2007 08:56:21 +0000 (+0000) Subject: Place SCCPSolver also in the anonymous namespace. This X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e2abf12436fb50d37edd1dba4c08cf1f650af4bc;p=oota-llvm.git Place SCCPSolver also in the anonymous namespace. This pacifies g++-4.2. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40089 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp index 0e4fe8f52af..dacaad01a3b 100644 --- a/lib/Transforms/Scalar/SCCP.cpp +++ b/lib/Transforms/Scalar/SCCP.cpp @@ -129,9 +129,6 @@ public: } }; -} // end anonymous namespace - - //===----------------------------------------------------------------------===// // /// SCCPSolver - This class is a general purpose solver for Sparse Conditional @@ -408,6 +405,9 @@ private: } }; +} // end anonymous namespace + + // getFeasibleSuccessors - Return a vector of booleans to indicate which // successors are reachable from a given terminator instruction. //