Add missing dependency to LLVMPasses

Passes should depend on CodeGen, as that contains some IR-to-IR passes.

llvm-svn: 273724
This commit is contained in:
Michael Kuperstein 2016-06-24 21:05:41 +00:00
parent fd1f2f8561
commit 5134020ea6
1 changed files with 1 additions and 1 deletions

View File

@ -19,4 +19,4 @@
type = Library
name = Passes
parent = Libraries
required_libraries = Analysis Core IPO InstCombine Scalar Support TransformUtils Vectorize Instrumentation
required_libraries = Analysis CodeGen Core IPO InstCombine Scalar Support TransformUtils Vectorize Instrumentation