mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-12 04:26:43 +00:00

Patch by Diego Treviño! Differential Revision: https://reviews.llvm.org/D65479 llvm-svn: 371567
29 lines
477 B
CMake
29 lines
477 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
AllTargetsAsmParsers
|
|
AllTargetsCodeGens
|
|
AllTargetsDescs
|
|
AllTargetsInfos
|
|
Core
|
|
IRReader
|
|
Support
|
|
Target
|
|
TransformUtils
|
|
)
|
|
|
|
# Support plugins.
|
|
set(LLVM_NO_DEAD_STRIP 1)
|
|
|
|
add_llvm_tool(llvm-reduce
|
|
llvm-reduce.cpp
|
|
TestRunner.cpp
|
|
deltas/Delta.cpp
|
|
deltas/ReduceFunctions.cpp
|
|
deltas/ReduceGlobalVars.cpp
|
|
deltas/ReduceMetadata.cpp
|
|
deltas/ReduceArguments.cpp
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
)
|
|
export_executable_symbols(llvm-reduce)
|