diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-07 01:44:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-07 01:44:18 +0000 |
commit | b762ddbdf12f96dab420e37fde5ca21d8c1d3add (patch) | |
tree | f0dc649a1506cc8d06278d4e198ba340d75802f2 /llvm/tools/gccas/gccas.cpp | |
parent | 771804b541f9a9e7dcfa0b4775e497b31ef0ad53 (diff) | |
download | bcm5719-llvm-b762ddbdf12f96dab420e37fde5ca21d8c1d3add.tar.gz bcm5719-llvm-b762ddbdf12f96dab420e37fde5ca21d8c1d3add.zip |
It is now after pldi. This issue has been fixed, so remove the hack
llvm-svn: 10306
Diffstat (limited to 'llvm/tools/gccas/gccas.cpp')
-rw-r--r-- | llvm/tools/gccas/gccas.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/tools/gccas/gccas.cpp b/llvm/tools/gccas/gccas.cpp index 0ed58b97db5..c7a2204e32d 100644 --- a/llvm/tools/gccas/gccas.cpp +++ b/llvm/tools/gccas/gccas.cpp @@ -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 |