Skip to content

Commit

Permalink
[OpenMP] Fix broken build due to new OMPT tests
Browse files Browse the repository at this point in the history
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
  • Loading branch information
hansangbae committed Aug 5, 2019
1 parent e757cad commit dcdbe65
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion openmp/runtime/test/ompt/teams/parallel_team.c
@@ -1,6 +1,6 @@
// RUN: %libomp-compile-and-run | %sort-threads | FileCheck %s // RUN: %libomp-compile-and-run | %sort-threads | FileCheck %s
// REQUIRES: ompt // REQUIRES: ompt
// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7 // UNSUPPORTED: gcc
#include "callback.h" #include "callback.h"


int main() { int main() {
Expand Down
2 changes: 1 addition & 1 deletion openmp/runtime/test/ompt/teams/serial_teams.c
@@ -1,6 +1,6 @@
// RUN: %libomp-compile-and-run | %sort-threads | FileCheck %s // RUN: %libomp-compile-and-run | %sort-threads | FileCheck %s
// REQUIRES: ompt // REQUIRES: ompt
// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7 // UNSUPPORTED: gcc
#include "callback.h" #include "callback.h"


int main() { int main() {
Expand Down
2 changes: 1 addition & 1 deletion openmp/runtime/test/ompt/teams/serialized.c
@@ -1,6 +1,6 @@
// RUN: %libomp-compile-and-run | FileCheck %s // RUN: %libomp-compile-and-run | FileCheck %s
// REQUIRES: ompt // REQUIRES: ompt
// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7 // UNSUPPORTED: gcc
#include "callback.h" #include "callback.h"


int main() { int main() {
Expand Down
2 changes: 1 addition & 1 deletion openmp/runtime/test/ompt/teams/team.c
@@ -1,6 +1,6 @@
// RUN: %libomp-compile-and-run | FileCheck %s // RUN: %libomp-compile-and-run | FileCheck %s
// REQUIRES: ompt // REQUIRES: ompt
// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7 // UNSUPPORTED: gcc
#include "callback.h" #include "callback.h"


int main() { int main() {
Expand Down

0 comments on commit dcdbe65

Please sign in to comment.