diff options
author | Eric Christopher <echristo@gmail.com> | 2017-06-22 22:58:12 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2017-06-22 22:58:12 +0000 |
commit | 5a7c2f17009460251cc27d9bda183d3272a419ba (patch) | |
tree | f38b198387a972a0249f9d3ead7c808c2cedfc3a /llvm/lib/Passes | |
parent | 05a21351d68c2656e49798fe5789d92a203971a9 (diff) | |
download | bcm5719-llvm-5a7c2f17009460251cc27d9bda183d3272a419ba.tar.gz bcm5719-llvm-5a7c2f17009460251cc27d9bda183d3272a419ba.zip |
Remove the LoadCombine pass. It was never enabled and is unsupported.
Based on discussions with the author on mailing lists.
llvm-svn: 306067
Diffstat (limited to 'llvm/lib/Passes')
-rw-r--r-- | llvm/lib/Passes/PassBuilder.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/Passes/PassBuilder.cpp b/llvm/lib/Passes/PassBuilder.cpp index afd66f55720..f4e0b8dcf4a 100644 --- a/llvm/lib/Passes/PassBuilder.cpp +++ b/llvm/lib/Passes/PassBuilder.cpp @@ -923,9 +923,6 @@ ModulePassManager PassBuilder::buildLTODefaultPipeline(OptimizationLevel Level, MainFPM.add(AlignmentFromAssumptionsPass()); #endif - // FIXME: Conditionally run LoadCombine here, after it's ported - // (in case we still have this pass, given its questionable usefulness). - // FIXME: add peephole extensions to the PM here. MainFPM.addPass(InstCombinePass()); MainFPM.addPass(JumpThreadingPass()); |