diff options
author | Dan Gohman <gohman@apple.com> | 2009-05-02 20:22:10 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-05-02 20:22:10 +0000 |
commit | e66f6f15e6afe3d437ccdca93f2209b3d4158486 (patch) | |
tree | 6fb0725868d08c03b424703883b8e9dfe5d5ed1a | |
parent | afc36a9520971832dfbebc0333593bf5d3098296 (diff) |
The second argument to RecursivelyDeleteTriviallyDeadInstructions has
a default value, and will hopefully be going away soon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70642 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/IPO/StripSymbols.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/IPO/StripSymbols.cpp b/lib/Transforms/IPO/StripSymbols.cpp index 77579d7bfa..ab8fe5f125 100644 --- a/lib/Transforms/IPO/StripSymbols.cpp +++ b/lib/Transforms/IPO/StripSymbols.cpp @@ -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)) |