mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
76874c8e3b
This patch contains the bare minimum to run the new Pass Manager from the LLVM-C APIs. It does not feature PGOOptions, PassPlugins or Debugify in its current state. Bugzilla: PR48499 Reviewed By: aeubanks Differential Revision: https://reviews.llvm.org/D102136
29 lines
438 B
CMake
29 lines
438 B
CMake
add_llvm_component_library(LLVMPasses
|
|
PassBuilder.cpp
|
|
PassBuilderBindings.cpp
|
|
PassPlugin.cpp
|
|
StandardInstrumentations.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/Passes
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
|
|
LINK_COMPONENTS
|
|
AggressiveInstCombine
|
|
Analysis
|
|
Core
|
|
Coroutines
|
|
IPO
|
|
InstCombine
|
|
ObjCARC
|
|
Scalar
|
|
Support
|
|
Target
|
|
TransformUtils
|
|
Vectorize
|
|
Instrumentation
|
|
)
|