It is now after pldi. This issue has been fixed, so remove the hack

llvm-svn: 10306
This commit is contained in:
Chris Lattner 2003-12-07 01:44:18 +00:00
parent 771804b541
commit b762ddbdf1
1 changed files with 0 additions and 6 deletions

View File

@ -70,12 +70,6 @@ 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