//===- llvm/unittests/Frontend/OpenMPCompositionTest.cpp ------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/SmallVector.h" #include "llvm/Frontend/OpenMP/OMP.h" #include "gtest/gtest.h" usingnamespacellvm; usingnamespacellvm::omp; TEST(Composition, GetLeafConstructs) { … } TEST(Composition, GetLeafConstructsOrSelf) { … } TEST(Composition, GetCompoundConstruct) { … } TEST(Composition, GetLeafOrCompositeConstructs) { … } TEST(Composition, IsLeafConstruct) { … } TEST(Composition, IsCompositeConstruct) { … } TEST(Composition, IsCombinedConstruct) { … }