Add TransformUtils to list of required libraries for llc

This dependency was added in r254774

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254786 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Derek Schuff 2015-12-04 22:47:58 +00:00
parent 3f8065b694
commit a7a95fed0f
3 changed files with 3 additions and 2 deletions

View File

@ -11,6 +11,7 @@ set(LLVM_LINK_COMPONENTS
SelectionDAG
Support
Target
TransformUtils
)
# Support plugins.

View File

@ -19,4 +19,4 @@
type = Tool
name = llc
parent = Tools
required_libraries = AsmParser BitReader IRReader MIRParser all-targets
required_libraries = AsmParser BitReader IRReader MIRParser TransformUtils all-targets

View File

@ -9,7 +9,7 @@
LEVEL := ../..
TOOLNAME := llc
LINK_COMPONENTS := all-targets bitreader asmparser irreader mirparser
LINK_COMPONENTS := all-targets bitreader asmparser irreader mirparser transformutils
# Support plugins.
NO_DEAD_STRIP := 1