The second argument to RecursivelyDeleteTriviallyDeadInstructions has

a default value, and will hopefully be going away soon.

llvm-svn: 70642
This commit is contained in:
Dan Gohman 2009-05-02 20:22:10 +00:00
parent e3e263fb71
commit b17dcbdadc
1 changed files with 2 additions and 2 deletions

View File

@ -291,7 +291,7 @@ bool StripDebugInfo(Module &M) {
if (Constant *C = dyn_cast<Constant>(Arg1))
DeadConstants.push_back(C);
else
RecursivelyDeleteTriviallyDeadInstructions(Arg1, NULL);
RecursivelyDeleteTriviallyDeadInstructions(Arg1);
}
if (Arg2->use_empty())
if (Constant *C = dyn_cast<Constant>(Arg2))
@ -381,7 +381,7 @@ bool StripDebugDeclare::runOnModule(Module &M) {
if (Constant *C = dyn_cast<Constant>(Arg1))
DeadConstants.push_back(C);
else
RecursivelyDeleteTriviallyDeadInstructions(Arg1, NULL);
RecursivelyDeleteTriviallyDeadInstructions(Arg1);
}
if (Arg2->use_empty())
if (Constant *C = dyn_cast<Constant>(Arg2))