History log of /llvm-project/llvm/unittests/Frontend/OpenMPCompositionTest.cpp (Results 1 – 3 of 3)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: llvmorg-18.1.8, llvmorg-18.1.7, llvmorg-18.1.6, llvmorg-18.1.5
# 4631e7ba 30-Apr-2024 Krzysztof Parzyszek <Krzysztof.Parzyszek@amd.com>

[Frontend][OpenMP] Add unit tests for getLeafConstructsOrSelf, NFC (#90110)


# d577518d 24-Apr-2024 Krzysztof Parzyszek <Krzysztof.Parzyszek@amd.com>

[Frontend][OpenMP] Implement getLeafOrCompositeConstructs (#89104)

This function will break up a construct into constituent leaf and
composite constructs, e.g. if OMPD_c_d_e and OMPD_d_e are compos

[Frontend][OpenMP] Implement getLeafOrCompositeConstructs (#89104)

This function will break up a construct into constituent leaf and
composite constructs, e.g. if OMPD_c_d_e and OMPD_d_e are composite
constructs, then OMPD_a_b_c_d_e will be broken up into the list {OMPD_a,
OMPD_b, OMPD_c_d_e}.

show more ...


# 70d3ddb2 23-Apr-2024 Krzysztof Parzyszek <Krzysztof.Parzyszek@amd.com>

[Frontend][OpenMP] Add functions for checking construct type (#87258)

Implement helper functions to identify leaf, composite, and combined
constructs.