OSDN Git Service

Remove this pass as its no longer needed.
authorReid Spencer <rspencer@reidspencer.com>
Fri, 10 Dec 2004 22:55:35 +0000 (22:55 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 10 Dec 2004 22:55:35 +0000 (22:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18783 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-ld/Optimize.cpp

index 5dc9424..c676809 100644 (file)
@@ -163,9 +163,6 @@ void Optimize(Module* M) {
     // Cleanup and simplify the code after the scalar optimizations.
     addPass(Passes, createInstructionCombiningPass());
 
-    // Delete basic blocks, which optimization passes may have killed...
-    addPass(Passes, createCFGSimplificationPass());
-
     // Now that we have optimized the program, discard unreachable functions...
     addPass(Passes, createGlobalDCEPass());
   }