From 4b390d541e7b0b0f484459c888e01b592d41cf54 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Fri, 20 Jul 2007 08:56:21 +0000 Subject: [PATCH] Place SCCPSolver also in the anonymous namespace. This pacifies g++-4.2. llvm-svn: 40089 --- lib/Transforms/Scalar/SCCP.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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. //