diff options
-rw-r--r-- | lib/Transforms/Scalar/DCE.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/DCE.cpp b/lib/Transforms/Scalar/DCE.cpp index 218c0add8b..89cf45aa7e 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. |