mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
90a1a43a36
It's been an empty target since r360498 and friends (`git log --grep='Move InstPrinter files to MCTargetDesc.' llvm/lib/Target`), but due to hwo the way these targets are structured it was silently an empty target without anyone noticing. No behavior change.
32 lines
632 B
CMake
32 lines
632 B
CMake
include_directories(include)
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
AllTargetsAsmParsers
|
|
AllTargetsDescs
|
|
AllTargetsDisassemblers
|
|
AllTargetsInfos
|
|
MCA
|
|
MC
|
|
MCParser
|
|
Support
|
|
)
|
|
|
|
add_llvm_tool(llvm-mca
|
|
llvm-mca.cpp
|
|
CodeRegion.cpp
|
|
CodeRegionGenerator.cpp
|
|
PipelinePrinter.cpp
|
|
Views/BottleneckAnalysis.cpp
|
|
Views/DispatchStatistics.cpp
|
|
Views/InstructionInfoView.cpp
|
|
Views/RegisterFileStatistics.cpp
|
|
Views/ResourcePressureView.cpp
|
|
Views/RetireControlUnitStatistics.cpp
|
|
Views/SchedulerStatistics.cpp
|
|
Views/SummaryView.cpp
|
|
Views/TimelineView.cpp
|
|
Views/View.cpp
|
|
)
|
|
|
|
set(LLVM_MCA_SOURCE_DIR ${CURRENT_SOURCE_DIR})
|