mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
As the comments indicate, this is a temporary, repulsive, hack
llvm-svn: 9982
This commit is contained in:
parent
fe4e3f7108
commit
b6b3b55e95
@ -70,6 +70,12 @@ void AddConfiguredTransformationPasses(PassManager &PM) {
|
||||
addPass(PM, createFunctionInliningPass()); // Inline small functions
|
||||
|
||||
addPass(PM, createInstructionCombiningPass()); // Cleanup code for raise
|
||||
|
||||
// HACK HACK HACK. This pass should be extended to support calls like 'call
|
||||
// (const expr cast (free))(Ty *). Until it does so, we have to run it after
|
||||
// instruction combining. This should be removed after PLDI!
|
||||
addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst
|
||||
|
||||
addPass(PM, createRaisePointerReferencesPass());// Recover type information
|
||||
addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code
|
||||
addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
|
||||
|
Loading…
x
Reference in New Issue
Block a user