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
diff --git a/lib/Transforms/IPO/StripSymbols.cpp b/lib/Transforms/IPO/StripSymbols.cpp
index 77579d7..ab8fe5f 100644
--- a/lib/Transforms/IPO/StripSymbols.cpp
+++ b/lib/Transforms/IPO/StripSymbols.cpp
@@ -291,7 +291,7 @@
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 @@
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))