From dcdbe6515b21e0f210d087536c6fee74cb9fe37e Mon Sep 17 00:00:00 2001 From: Hansang Bae Date: Mon, 5 Aug 2019 21:46:13 +0000 Subject: [PATCH] [OpenMP] Fix broken build due to new OMPT tests New OMPT tests with teams construct should be disabled for GCC as it emits code with a GOMP entry not supported in the LLVM runtime. Differential Revision: https://reviews.llvm.org/D65757 llvm-svn: 367939 --- openmp/runtime/test/ompt/teams/parallel_team.c | 2 +- openmp/runtime/test/ompt/teams/serial_teams.c | 2 +- openmp/runtime/test/ompt/teams/serialized.c | 2 +- openmp/runtime/test/ompt/teams/team.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/openmp/runtime/test/ompt/teams/parallel_team.c b/openmp/runtime/test/ompt/teams/parallel_team.c index eb22edf..15d9b6c 100644 --- a/openmp/runtime/test/ompt/teams/parallel_team.c +++ b/openmp/runtime/test/ompt/teams/parallel_team.c @@ -1,6 +1,6 @@ // RUN: %libomp-compile-and-run | %sort-threads | FileCheck %s // REQUIRES: ompt -// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7 +// UNSUPPORTED: gcc #include "callback.h" int main() { diff --git a/openmp/runtime/test/ompt/teams/serial_teams.c b/openmp/runtime/test/ompt/teams/serial_teams.c index a1f2d60..64d0c89 100644 --- a/openmp/runtime/test/ompt/teams/serial_teams.c +++ b/openmp/runtime/test/ompt/teams/serial_teams.c @@ -1,6 +1,6 @@ // RUN: %libomp-compile-and-run | %sort-threads | FileCheck %s // REQUIRES: ompt -// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7 +// UNSUPPORTED: gcc #include "callback.h" int main() { diff --git a/openmp/runtime/test/ompt/teams/serialized.c b/openmp/runtime/test/ompt/teams/serialized.c index 8787b92..4edd422 100644 --- a/openmp/runtime/test/ompt/teams/serialized.c +++ b/openmp/runtime/test/ompt/teams/serialized.c @@ -1,6 +1,6 @@ // RUN: %libomp-compile-and-run | FileCheck %s // REQUIRES: ompt -// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7 +// UNSUPPORTED: gcc #include "callback.h" int main() { diff --git a/openmp/runtime/test/ompt/teams/team.c b/openmp/runtime/test/ompt/teams/team.c index 78f8b7c..3aa85ea 100644 --- a/openmp/runtime/test/ompt/teams/team.c +++ b/openmp/runtime/test/ompt/teams/team.c @@ -1,6 +1,6 @@ // RUN: %libomp-compile-and-run | FileCheck %s // REQUIRES: ompt -// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7 +// UNSUPPORTED: gcc #include "callback.h" int main() { -- 2.7.4