New prototype

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15102 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-07-22 08:07:30 +00:00
parent 0fb56afab1
commit 3ede6adf18

View File

@ -63,6 +63,12 @@ Pass *createDeadInstEliminationPass();
//
Pass *createDeadCodeEliminationPass();
//===----------------------------------------------------------------------===//
//
// DeadStoreElimination - This pass deletes stores that are post-dominated by
// must-aliased stores and are not loaded used between the stores.
//
Pass *createDeadStoreEliminationPass();
//===----------------------------------------------------------------------===//
//