diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-07-14 22:29:15 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-07-14 22:29:15 +0000 |
commit | 4015ae1d2c04c30f3b56193588257b2924011ffb (patch) | |
tree | 21475a4ccc906280f1f33b801f493fa98b434bc2 | |
parent | c18255d80fe549c06b452a910a948dae7942b53f (diff) | |
download | bcm5719-llvm-4015ae1d2c04c30f3b56193588257b2924011ffb.tar.gz bcm5719-llvm-4015ae1d2c04c30f3b56193588257b2924011ffb.zip |
Goodbye tail duplication (for good this time).
llvm-svn: 53574
-rw-r--r-- | llvm/tools/opt/opt.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/tools/opt/opt.cpp b/llvm/tools/opt/opt.cpp index 6d152a60832..1d8ce576d6a 100644 --- a/llvm/tools/opt/opt.cpp +++ b/llvm/tools/opt/opt.cpp @@ -264,7 +264,6 @@ void AddStandardCompilePasses(PassManager &PM) { addPass(PM, createFunctionInliningPass()); // Inline small functions addPass(PM, createArgumentPromotionPass()); // Scalarize uninlined fn args - addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code addPass(PM, createSimplifyLibCallsPass()); // Library Call Optimizations addPass(PM, createInstructionCombiningPass()); // Cleanup for scalarrepl. addPass(PM, createJumpThreadingPass()); // Thread jumps. |