Rename DoSparseConditionalConstantProp -> DoSCCP
authorChris Lattner <sabre@nondot.org>
Sat, 30 Jun 2001 06:37:43 +0000 (06:37 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 30 Jun 2001 06:37:43 +0000 (06:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/SCCP.cpp

index 30c625475f6e13e2c77130171c05acda80567ef0..8b59e19c1c7a1052bb6129c2c5bba107beb46e4e 100644 (file)
@@ -507,7 +507,7 @@ void SCCP::OperandChangedState(User *U) {
 // DoSparseConditionalConstantProp - Use Sparse Conditional Constant Propogation
 // to prove whether a value is constant and whether blocks are used.
 //
-bool opt::DoSparseConditionalConstantProp(Method *M) {
+bool opt::DoSCCP(Method *M) {
   SCCP S(M);
   return S.doSCCP();
 }