mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Add the function attributes pass during LTO time.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65508 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d838fcd03d
commit
677c2c2a62
@ -136,10 +136,11 @@ void Optimize(Module* M) {
|
||||
addPass(Passes, createScalarReplAggregatesPass()); // Break up allocas
|
||||
|
||||
// Run a few AA driven optimizations here and now, to cleanup the code.
|
||||
addPass(Passes, createFunctionAttrsPass()); // Add nocapture
|
||||
addPass(Passes, createGlobalsModRefPass()); // IP alias analysis
|
||||
|
||||
addPass(Passes, createLICMPass()); // Hoist loop invariants
|
||||
addPass(Passes, createGVNPass()); // Remove redundancies
|
||||
addPass(Passes, createGVNPass()); // Remove redundancies
|
||||
addPass(Passes, createMemCpyOptPass()); // Remove dead memcpy's
|
||||
addPass(Passes, createDeadStoreEliminationPass()); // Nuke dead stores
|
||||
|
||||
|
@ -391,6 +391,7 @@ bool LTOCodeGenerator::generateAssemblyCode(raw_ostream& out,
|
||||
passes.add(createScalarReplAggregatesPass()); // Break up allocas
|
||||
|
||||
// Run a few AA driven optimizations here and now, to cleanup the code.
|
||||
passes.add(createFunctionAttrsPass()); // Add nocapture
|
||||
passes.add(createGlobalsModRefPass()); // IP alias analysis
|
||||
passes.add(createLICMPass()); // Hoist loop invariants
|
||||
passes.add(createGVNPass()); // Remove common subexprs
|
||||
|
Loading…
Reference in New Issue
Block a user