1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00
llvm-mirror/unittests/Frontend/CMakeLists.txt
Johannes Doerfert 9c02ea5b83 [OpenMP][IR-Builder] Introduce "pragma omp parallel" code generation
This patch combines the `emitParallel` logic prototyped in D61953 with
the OpenMPIRBuilder (D69785) and introduces `CreateParallel`.

Reviewed By: fghanim

Differential Revision: https://reviews.llvm.org/D70109
2019-12-25 18:02:23 -06:00

15 lines
236 B
CMake

set(LLVM_LINK_COMPONENTS
Analysis
Core
FrontendOpenMP
Support
Passes
TransformUtils
)
add_llvm_unittest(LLVMFrontendTests
OpenMPIRBuilderTest.cpp
)
target_link_libraries(LLVMFrontendTests PRIVATE LLVMTestingSupport)