Rename DoSparseConditionalConstantProp -> DoSCCP
[oota-llvm.git] / 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();
 }