Make the create...() functions for some of these passes return a FunctionPass *.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15276 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Brian Gaeke
2004-07-27 17:43:21 +00:00
parent c91bc30436
commit 96d4bf7aee
5 changed files with 7 additions and 7 deletions

View File

@@ -61,7 +61,7 @@ Pass *createDeadInstEliminationPass();
// their other instructions become dead, to eliminate chains of dead
// computations.
//
Pass *createDeadCodeEliminationPass();
FunctionPass *createDeadCodeEliminationPass();
//===----------------------------------------------------------------------===//
//
@@ -132,7 +132,7 @@ Pass *createIndVarSimplifyPass();
// into:
// %Z = add int 2, %X
//
Pass *createInstructionCombiningPass();
FunctionPass *createInstructionCombiningPass();
//===----------------------------------------------------------------------===//