mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-02 21:31:41 +00:00
Turn on argument promotion in gccas. This can give us substantially better
code in cases where the file has lots of static functions or anon namespaces. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12361 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6a6d2a2d6f
commit
2c7b430bc0
@ -79,6 +79,7 @@ void AddConfiguredTransformationPasses(PassManager &PM) {
|
||||
|
||||
if (!DisableInline)
|
||||
addPass(PM, createFunctionInliningPass()); // Inline small functions
|
||||
addPass(PM, createArgumentPromotionPass()); // Scalarize uninlined fn args
|
||||
|
||||
addPass(PM, createRaisePointerReferencesPass());// Recover type information
|
||||
addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code
|
||||
|
Loading…
x
Reference in New Issue
Block a user