diff options
author | Florian Hahn <flo@fhahn.com> | 2019-10-02 16:58:13 +0000 |
---|---|---|
committer | Florian Hahn <flo@fhahn.com> | 2019-10-02 16:58:13 +0000 |
commit | eb6700b57e969e75014394a02e8130542f3f6457 (patch) | |
tree | d40e80e72a5399be6ad70b8c079c677f93f302ad /llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp | |
parent | ef315b5361e414f93b0f0067084fe9f63e620b54 (diff) | |
download | bcm5719-llvm-eb6700b57e969e75014394a02e8130542f3f6457.tar.gz bcm5719-llvm-eb6700b57e969e75014394a02e8130542f3f6457.zip |
[Local] Remove unused LazyValueInfo pointer from removeUnreachableBlock.
There are no users that pass in LazyValueInfo, so we can simplify the
function a bit.
Reviewers: brzycki, asbirlea, davide
Reviewed By: davide
Differential Revision: https://reviews.llvm.org/D68297
llvm-svn: 373488
Diffstat (limited to 'llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp b/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp index 47d226f83a4..48bbdd8d1b3 100644 --- a/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp +++ b/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp @@ -2530,7 +2530,7 @@ bool RewriteStatepointsForGC::runOnFunction(Function &F, DominatorTree &DT, // statepoints surviving this pass. This makes testing easier and the // resulting IR less confusing to human readers. DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Lazy); - bool MadeChange = removeUnreachableBlocks(F, nullptr, &DTU); + bool MadeChange = removeUnreachableBlocks(F, &DTU); // Flush the Dominator Tree. DTU.getDomTree(); |