mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
912a050cc8
Implementing -print-before-all/-print-after-all/-filter-print-func support through PassInstrumentation callbacks. - PrintIR routines implement printing callbacks. - StandardInstrumentations class provides a central place to manage all the "standard" in-tree pass instrumentations. Currently it registers PrintIR callbacks. Reviewers: chandlerc, paquette, philip.pfaffe Differential Revision: https://reviews.llvm.org/D50923 llvm-svn: 342896
16 lines
290 B
CMake
16 lines
290 B
CMake
if (MSVC)
|
|
set_source_files_properties(PassBuilder.cpp PROPERTIES COMPILE_FLAGS /bigobj)
|
|
endif()
|
|
|
|
add_llvm_library(LLVMPasses
|
|
PassBuilder.cpp
|
|
PassPlugin.cpp
|
|
StandardInstrumentations.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/Passes
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|