From c560f88e915158b78c198fbc982a35cbbdf03644 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 23 Jan 2002 05:48:24 +0000 Subject: [PATCH] Implement new DeadInstElmination pass remove old comment git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1555 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Scalar/DCE.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/Transforms/Scalar/DCE.cpp b/lib/Transforms/Scalar/DCE.cpp index 218c0add8be..89cf45aa7e6 100644 --- a/lib/Transforms/Scalar/DCE.cpp +++ b/lib/Transforms/Scalar/DCE.cpp @@ -3,7 +3,7 @@ // This file implements dead code elimination and basic block merging. // // Specifically, this: -// * removes definitions with no uses (including unused constants) +// * removes definitions with no uses // * removes basic blocks with no predecessors // * merges a basic block into its predecessor if there is only one and the // predecessor only has one successor. @@ -61,6 +61,10 @@ static inline bool RemoveUnusedDefs(BasicBlock::InstListType &Vals) { return Changed; } +bool DeadInstElimination::runOnBasicBlock(BasicBlock *BB) { + return RemoveUnusedDefs(BB->getInstList()); +} + // RemoveSingularPHIs - This removes PHI nodes from basic blocks that have only // a single predecessor. This means that the PHI node must only have a single // RHS value and can be eliminated.