[llvm] r265945 - [ThinLTO] BitcodeWriter still requires Analysis library
Teresa Johnson via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 11 07:59:07 PDT 2016
Author: tejohnson
Date: Mon Apr 11 09:59:07 2016
New Revision: 265945
URL: http://llvm.org/viewvc/llvm-project?rev=265945&view=rev
Log:
[ThinLTO] BitcodeWriter still requires Analysis library
This should fix bot failure:
http://bb.pgr.jp/builders/i686-mingw32-RA-on-linux/builds/9873
The bitcode writer unfortunately still needs the Analysis library, as it
replaces old dependence on BFI etc with dependence on new
ModuleSummaryAnalysis pass.
Modified:
llvm/trunk/lib/Bitcode/Writer/LLVMBuild.txt
Modified: llvm/trunk/lib/Bitcode/Writer/LLVMBuild.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Bitcode/Writer/LLVMBuild.txt?rev=265945&r1=265944&r2=265945&view=diff
==============================================================================
--- llvm/trunk/lib/Bitcode/Writer/LLVMBuild.txt (original)
+++ llvm/trunk/lib/Bitcode/Writer/LLVMBuild.txt Mon Apr 11 09:59:07 2016
@@ -19,4 +19,4 @@
type = Library
name = BitWriter
parent = Bitcode
-required_libraries = Core Support
+required_libraries = Analysis Core Support
More information about the llvm-commits
mailing list