1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Place SCCPSolver also in the anonymous namespace. This

pacifies g++-4.2.

llvm-svn: 40089
This commit is contained in:
Duncan Sands 2007-07-20 08:56:21 +00:00
parent 89afa507b1
commit 4b390d541e

View File

@ -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.
//