mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
Build fix: remove initializeJumpInstrTablesPass() call from LTO
This was incurring an unsatisfied dependency on CodeGen from LTO breaking shared builds: Undefined symbols for architecture x86_64: "llvm::initializeJumpInstrTablesPass(llvm::PassRegistry&)", referenced from: llvm::LTOCodeGenerator::initializeLTOPasses() in LTOCodeGenerator.cpp.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) Removed as a temporary measure pending feedback from the author. llvm-svn: 210400
This commit is contained in:
parent
6fbe07452a
commit
1593af0f5d
@ -96,7 +96,6 @@ void LTOCodeGenerator::initializeLTOPasses() {
|
||||
initializeConstantMergePass(R);
|
||||
initializeDAHPass(R);
|
||||
initializeInstCombinerPass(R);
|
||||
initializeJumpInstrTablesPass(R);
|
||||
initializeSimpleInlinerPass(R);
|
||||
initializePruneEHPass(R);
|
||||
initializeGlobalDCEPass(R);
|
||||
|
Loading…
Reference in New Issue
Block a user