1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

Rename DoSparseConditionalConstantProp -> DoSCCP

llvm-svn: 117
This commit is contained in:
Chris Lattner 2001-06-30 06:37:43 +00:00
parent 33950625dd
commit c4e564a84c

View 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();
}