mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-21 03:28:13 +00:00
4dc48bfbbe
Summary: In preparation for graph comparison and filtering, this is a library for representing graphs in LLVM. This will enable easier encapsulation and reuse of graphs in llvm-xray. Depends on D28999, D28225 Reviewers: dblaikie, dberris Reviewed By: dberris Subscribers: mgorny, llvm-commits Differential Revision: https://reviews.llvm.org/D29005 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294717 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
170 B
CMake
14 lines
170 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
set(XRAYSources
|
|
GraphTest.cpp
|
|
)
|
|
|
|
add_llvm_unittest(XRayTests
|
|
${XRAYSources}
|
|
)
|
|
|
|
add_dependencies(XRayTests intrinsics_gen)
|