Update libdeps since TLI was moved from Target to Analysis in r226078.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226126 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi
2015-01-15 05:21:00 +00:00
parent 9500df49eb
commit 20b033eae5
10 changed files with 10 additions and 10 deletions

View File

@@ -22,4 +22,4 @@ subdirectories = IPA
type = Library type = Library
name = Analysis name = Analysis
parent = Libraries parent = Libraries
required_libraries = Core Support Target required_libraries = Core Support

View File

@@ -19,4 +19,4 @@
type = Library type = Library
name = LTO name = LTO
parent = Libraries parent = Libraries
required_libraries = BitReader BitWriter CodeGen Core IPA IPO InstCombine Linker MC ObjCARC Object Scalar Support Target TransformUtils required_libraries = Analysis BitReader BitWriter CodeGen Core IPA IPO InstCombine Linker MC ObjCARC Object Scalar Support Target

View File

@@ -45,7 +45,7 @@ parent = Libraries
type = Library type = Library
name = Target name = Target
parent = Libraries parent = Libraries
required_libraries = Core MC Support required_libraries = Analysis Core MC Support
; This is a special group whose required libraries are extended (by llvm-build) ; This is a special group whose required libraries are extended (by llvm-build)
; with every built target, which makes it easy for tools to include every ; with every built target, which makes it easy for tools to include every

View File

@@ -20,4 +20,4 @@ type = Library
name = IPO name = IPO
parent = Transforms parent = Transforms
library_name = ipo library_name = ipo
required_libraries = Analysis Core IPA InstCombine Scalar Support Target TransformUtils Vectorize required_libraries = Analysis Core IPA InstCombine Scalar Support TransformUtils Vectorize

View File

@@ -19,4 +19,4 @@
type = Library type = Library
name = InstCombine name = InstCombine
parent = Transforms parent = Transforms
required_libraries = Analysis Core Support Target TransformUtils required_libraries = Analysis Core Support TransformUtils

View File

@@ -19,4 +19,4 @@
type = Library type = Library
name = Instrumentation name = Instrumentation
parent = Transforms parent = Transforms
required_libraries = Analysis Core MC Support Target TransformUtils required_libraries = Analysis Core MC Support TransformUtils

View File

@@ -20,4 +20,4 @@ type = Library
name = Scalar name = Scalar
parent = Transforms parent = Transforms
library_name = ScalarOpts library_name = ScalarOpts
required_libraries = Analysis Core InstCombine ProfileData Support Target TransformUtils required_libraries = Analysis Core InstCombine ProfileData Support TransformUtils

View File

@@ -19,4 +19,4 @@
type = Library type = Library
name = TransformUtils name = TransformUtils
parent = Transforms parent = Transforms
required_libraries = Analysis Core IPA Support Target required_libraries = Analysis Core IPA Support

View File

@@ -20,4 +20,4 @@ type = Library
name = Vectorize name = Vectorize
parent = Transforms parent = Transforms
library_name = Vectorize library_name = Vectorize
required_libraries = Analysis Core Support Target TransformUtils required_libraries = Analysis Core Support TransformUtils

View File

@@ -1,5 +1,6 @@
set(LLVM_LINK_COMPONENTS set(LLVM_LINK_COMPONENTS
${LLVM_TARGETS_TO_BUILD} ${LLVM_TARGETS_TO_BUILD}
Analysis
AsmPrinter AsmPrinter
CodeGen CodeGen
Core Core
@@ -8,7 +9,6 @@ set(LLVM_LINK_COMPONENTS
ScalarOpts ScalarOpts
SelectionDAG SelectionDAG
Support Support
Target
) )
# Support plugins. # Support plugins.