Move ipsccp pass earlier to clean up obvious bogosities

llvm-svn: 30232
This commit is contained in:
Chris Lattner 2006-09-09 21:30:13 +00:00
parent 27ff96d87a
commit 70b9f5bd1e
1 changed files with 5 additions and 3 deletions

View File

@ -220,6 +220,11 @@ int llvm::GenerateBytecode(Module *M, int StripLevel, bool Internalize,
// internal.
addPass(Passes, createInternalizePass(Internalize));
// Propagate constants at call sites into the functions they call. This
// opens opportunities for globalopt (and inlining) by substituting function
// pointers passed as arguments to direct uses of functions.
addPass(Passes, createIPSCCPPass());
// Now that we internalized some globals, see if we can hack on them!
addPass(Passes, createGlobalOptimizerPass());
@ -227,9 +232,6 @@ int llvm::GenerateBytecode(Module *M, int StripLevel, bool Internalize,
// keep one copy of each constant...
addPass(Passes, createConstantMergePass());
// Propagate constants at call sites into the functions they call.
addPass(Passes, createIPSCCPPass());
// Remove unused arguments from functions...
addPass(Passes, createDeadArgEliminationPass());