aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-06-30 06:37:43 +0000
committerChris Lattner <sabre@nondot.org>2001-06-30 06:37:43 +0000
commit49c8f64747875e327754f6bb458d4b8409073082 (patch)
treef63e96b715e3f29aa2ceead3dd6c24ae23d6f7ca
parent05b9a7f7b8be1c0693d327037daba95a7b61f83b (diff)
Rename DoSparseConditionalConstantProp -> DoSCCP
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Scalar/SCCP.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp
index 30c625475f..8b59e19c1c 100644
--- a/lib/Transforms/Scalar/SCCP.cpp
+++ b/lib/Transforms/Scalar/SCCP.cpp
@@ -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();
}