r330694 - Link to AggressiveInstCombine in a few places. Unbreaks build for me.
Roman Lebedev via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 24 01:40:44 PDT 2018
Author: lebedevri
Date: Tue Apr 24 01:40:44 2018
New Revision: 330694
URL: http://llvm.org/viewvc/llvm-project?rev=330694&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:
cfe/trunk/lib/CodeGen/CMakeLists.txt
cfe/trunk/tools/driver/CMakeLists.txt
Modified: cfe/trunk/lib/CodeGen/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CMakeLists.txt?rev=330694&r1=330693&r2=330694&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CMakeLists.txt (original)
+++ cfe/trunk/lib/CodeGen/CMakeLists.txt Tue Apr 24 01:40:44 2018
@@ -7,6 +7,7 @@ set(LLVM_LINK_COMPONENTS
Coverage
IPO
IRReader
+ AggressiveInstCombine
InstCombine
Instrumentation
LTO
Modified: cfe/trunk/tools/driver/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/driver/CMakeLists.txt?rev=330694&r1=330693&r2=330694&view=diff
==============================================================================
--- cfe/trunk/tools/driver/CMakeLists.txt (original)
+++ cfe/trunk/tools/driver/CMakeLists.txt Tue Apr 24 01:40:44 2018
@@ -4,6 +4,7 @@ set( LLVM_LINK_COMPONENTS
CodeGen
Core
IPO
+ AggressiveInstCombine
InstCombine
Instrumentation
MC
More information about the cfe-commits
mailing list