summaryrefslogtreecommitdiff
path: root/tools/gccas
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-07 01:44:18 +0000
committerChris Lattner <sabre@nondot.org>2003-12-07 01:44:18 +0000
commit1dcf7bc6a900791b3c702e344c6a8ee32b2187f8 (patch)
treeeab3698f122322713385d1e4d4d3ac9937b0016c /tools/gccas
parenteb12cd67dd5ee08a091f1381db79c8699f409232 (diff)
downloadllvm-1dcf7bc6a900791b3c702e344c6a8ee32b2187f8.tar.gz
llvm-1dcf7bc6a900791b3c702e344c6a8ee32b2187f8.tar.bz2
llvm-1dcf7bc6a900791b3c702e344c6a8ee32b2187f8.tar.xz
It is now after pldi. This issue has been fixed, so remove the hack
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10306 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gccas')
-rw-r--r--tools/gccas/gccas.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp
index 0ed58b97db..c7a2204e32 100644
--- a/tools/gccas/gccas.cpp
+++ b/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