[llvm] r330693 - Link to AggressiveInstCombine in a few places. Unbreaks build for me.

Roman Lebedev via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 24 01:40:38 PDT 2018


Author: lebedevri
Date: Tue Apr 24 01:40:37 2018
New Revision: 330693

URL: http://llvm.org/viewvc/llvm-project?rev=330693&view=rev
Log:
Link to AggressiveInstCombine in a few places. Unbreaks build for me.

/usr/local/bin/ld.lld: error: undefined symbol: llvm::createAggressiveInstCombinerPass()
>>> referenced by cc1_main.cpp
>>>               tools/clang/tools/driver/CMakeFiles/clang.dir/cc1_main.cpp.o:(_GLOBAL__sub_I_cc1_main.cpp)

And so on

The bot coverage is clearly missing.

Modified:
    llvm/trunk/tools/bugpoint/CMakeLists.txt
    llvm/trunk/tools/llvm-opt-fuzzer/CMakeLists.txt
    llvm/trunk/unittests/ExecutionEngine/MCJIT/CMakeLists.txt

Modified: llvm/trunk/tools/bugpoint/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/CMakeLists.txt?rev=330693&r1=330692&r2=330693&view=diff
==============================================================================
--- llvm/trunk/tools/bugpoint/CMakeLists.txt (original)
+++ llvm/trunk/tools/bugpoint/CMakeLists.txt Tue Apr 24 01:40:37 2018
@@ -6,6 +6,7 @@ set(LLVM_LINK_COMPONENTS
   Core
   IPO
   IRReader
+  AggressiveInstCombine
   InstCombine
   Instrumentation
   Linker

Modified: llvm/trunk/tools/llvm-opt-fuzzer/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvm-opt-fuzzer/CMakeLists.txt?rev=330693&r1=330692&r2=330693&view=diff
==============================================================================
--- llvm/trunk/tools/llvm-opt-fuzzer/CMakeLists.txt (original)
+++ llvm/trunk/tools/llvm-opt-fuzzer/CMakeLists.txt Tue Apr 24 01:40:37 2018
@@ -8,6 +8,7 @@ set(LLVM_LINK_COMPONENTS
   Coroutines
   IPO
   IRReader
+  AggressiveInstCombine
   InstCombine
   Instrumentation
   FuzzMutate

Modified: llvm/trunk/unittests/ExecutionEngine/MCJIT/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ExecutionEngine/MCJIT/CMakeLists.txt?rev=330693&r1=330692&r2=330693&view=diff
==============================================================================
--- llvm/trunk/unittests/ExecutionEngine/MCJIT/CMakeLists.txt (original)
+++ llvm/trunk/unittests/ExecutionEngine/MCJIT/CMakeLists.txt Tue Apr 24 01:40:37 2018
@@ -3,6 +3,7 @@ set(LLVM_LINK_COMPONENTS
   Core
   ExecutionEngine
   IPO
+  InstCombine
   MC
   MCJIT
   RuntimeDyld




More information about the llvm-commits mailing list