Skip to content

Commit 70677c8

Browse files
committed
Revert "[libomptarget] Build plugins-nextgen for SystemZ (#83978)"
This reverts commit 3ecd38c.
1 parent d4f4f80 commit 70677c8

37 files changed

+9
-71
lines changed

clang/lib/Frontend/CompilerInvocation.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4012,7 +4012,6 @@ bool CompilerInvocation::ParseLangArgs(LangOptions &Opts, ArgList &Args,
40124012

40134013
if (TT.getArch() == llvm::Triple::UnknownArch ||
40144014
!(TT.getArch() == llvm::Triple::aarch64 || TT.isPPC() ||
4015-
TT.getArch() == llvm::Triple::systemz ||
40164015
TT.getArch() == llvm::Triple::nvptx ||
40174016
TT.getArch() == llvm::Triple::nvptx64 ||
40184017
TT.getArch() == llvm::Triple::amdgcn ||

clang/tools/clang-linker-wrapper/ClangLinkerWrapper.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,6 @@ Expected<StringRef> linkDevice(ArrayRef<StringRef> InputFiles,
552552
case Triple::aarch64_be:
553553
case Triple::ppc64:
554554
case Triple::ppc64le:
555-
case Triple::systemz:
556555
return generic::clang(InputFiles, Args);
557556
default:
558557
return createStringError(inconvertibleErrorCode(),

llvm/lib/Frontend/OpenMP/OMPContext.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ OMPContext::OMPContext(bool IsDeviceCompilation, Triple TargetTriple) {
4444
case Triple::ppcle:
4545
case Triple::ppc64:
4646
case Triple::ppc64le:
47-
case Triple::systemz:
4847
case Triple::x86:
4948
case Triple::x86_64:
5049
ActiveTraits.set(unsigned(TraitProperty::device_kind_cpu));

openmp/libomptarget/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ set (LIBOMPTARGET_ALL_TARGETS "${LIBOMPTARGET_ALL_TARGETS} x86_64-pc-linux-gnu-L
5656
set (LIBOMPTARGET_ALL_TARGETS "${LIBOMPTARGET_ALL_TARGETS} nvptx64-nvidia-cuda")
5757
set (LIBOMPTARGET_ALL_TARGETS "${LIBOMPTARGET_ALL_TARGETS} nvptx64-nvidia-cuda-LTO")
5858
set (LIBOMPTARGET_ALL_TARGETS "${LIBOMPTARGET_ALL_TARGETS} nvptx64-nvidia-cuda-JIT-LTO")
59-
set (LIBOMPTARGET_ALL_TARGETS "${LIBOMPTARGET_ALL_TARGETS} s390x-ibm-linux-gnu")
60-
set (LIBOMPTARGET_ALL_TARGETS "${LIBOMPTARGET_ALL_TARGETS} s390x-ibm-linux-gnu-LTO")
6159

6260
# Once the plugins for the different targets are validated, they will be added to
6361
# the list of supported targets in the current system.

openmp/libomptarget/plugins-nextgen/CMakeLists.txt

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,12 @@
1212

1313
add_subdirectory(common)
1414

15-
# void build_generic_elf64(string tmachine, string tmachine_name, string tmachine_libname,
16-
# string tmachine_llvm, string tmachine_triple, string elf_machine_id);
15+
# void build_generic_elf64(string tmachine, string tmachine_name, string tmachine_libname, string elf_machine_id);
1716
# - build a plugin for an ELF based generic 64-bit target based on libffi.
1817
# - tmachine: name of the machine processor as used in the cmake build system.
1918
# - tmachine_name: name of the machine to be printed with the debug messages.
2019
# - tmachine_libname: machine name to be appended to the plugin library name.
21-
# - tmachine_llvm: LLVM triple for the processor
22-
# - tmachine_triple: GNU target triple
23-
macro(build_generic_elf64 tmachine tmachine_name tmachine_libname tmachine_llvm tmachine_triple elf_machine_id)
20+
macro(build_generic_elf64 tmachine tmachine_name tmachine_libname tmachine_triple elf_machine_id)
2421
if(CMAKE_SYSTEM_PROCESSOR MATCHES "${tmachine}$")
2522
# Define macro to be used as prefix of the runtime messages for this target.
2623
add_definitions("-DTARGET_NAME=${tmachine_name}")
@@ -33,7 +30,7 @@ if(CMAKE_SYSTEM_PROCESSOR MATCHES "${tmachine}$")
3330
add_definitions("-DTARGET_ELF_ID=${elf_machine_id}")
3431

3532
# Define target triple
36-
add_definitions("-DLIBOMPTARGET_NEXTGEN_GENERIC_PLUGIN_TRIPLE=${tmachine_llvm}")
33+
add_definitions("-DLIBOMPTARGET_NEXTGEN_GENERIC_PLUGIN_TRIPLE=${tmachine}")
3734

3835
add_llvm_library("omptarget.rtl.${tmachine_libname}"
3936
SHARED

openmp/libomptarget/plugins-nextgen/aarch64/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
##===----------------------------------------------------------------------===##
1212

1313
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
14-
build_generic_elf64("aarch64" "aarch64" "aarch64" "aarch64" "aarch64-unknown-linux-gnu" "183")
14+
build_generic_elf64("aarch64" "aarch64" "aarch64" "aarch64-unknown-linux-gnu" "183")
1515
else()
1616
libomptarget_say("Not building aarch64 NextGen offloading plugin: machine not found in the system.")
1717
endif()

openmp/libomptarget/plugins-nextgen/ppc64/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
##===----------------------------------------------------------------------===##
1212

1313
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
14-
build_generic_elf64("ppc64" "PPC64" "ppc64" "ppc64" "powerpc64-ibm-linux-gnu" "21")
14+
build_generic_elf64("ppc64" "PPC64" "ppc64" "powerpc64-ibm-linux-gnu" "21")
1515
else()
1616
libomptarget_say("Not building ppc64 NextGen offloading plugin: machine not found in the system.")
1717
endif()

openmp/libomptarget/plugins-nextgen/ppc64le/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
##===----------------------------------------------------------------------===##
1212

1313
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
14-
build_generic_elf64("ppc64le" "PPC64le" "ppc64" "ppc64le" "powerpc64le-ibm-linux-gnu" "21")
14+
build_generic_elf64("ppc64le" "PPC64le" "ppc64" "powerpc64le-ibm-linux-gnu" "21")
1515
else()
1616
libomptarget_say("Not building ppc64le NextGen offloading plugin: machine not found in the system.")
1717
endif()

openmp/libomptarget/plugins-nextgen/s390x/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
##===----------------------------------------------------------------------===##
1212

1313
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
14-
build_generic_elf64("s390x" "S390X" "s390x" "systemz" "s390x-ibm-linux-gnu" "22")
14+
build_generic_elf64("SystemZ" "S390X" "s390x" "s390x-ibm-linux-gnu" "22")
1515
else()
1616
libomptarget_say("Not building s390x NextGen offloading plugin: machine not found in the system.")
1717
endif()

openmp/libomptarget/plugins-nextgen/x86_64/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
##===----------------------------------------------------------------------===##
1212

1313
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
14-
build_generic_elf64("x86_64" "x86_64" "x86_64" "x86_64" "x86_64-pc-linux-gnu" "62")
14+
build_generic_elf64("x86_64" "x86_64" "x86_64" "x86_64-pc-linux-gnu" "62")
1515
else()
1616
libomptarget_say("Not building x86_64 NextGen offloading plugin: machine not found in the system.")
1717
endif()

openmp/libomptarget/src/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ if (NOT LIBOMPTARGET_PLUGINS_TO_LOAD)
7373
check_plugin_target(cuda)
7474
check_plugin_target(aarch64)
7575
check_plugin_target(amdgpu)
76-
check_plugin_target(s390x)
7776
endif()
7877

7978
list(TRANSFORM LIBOMPTARGET_PLUGINS_TO_LOAD PREPEND "\"libomptarget.rtl.")

openmp/libomptarget/test/api/omp_dynamic_shared_memory.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
1111
// UNSUPPORTED: aarch64-unknown-linux-gnu
1212
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
13-
// UNSUPPORTED: s390x-ibm-linux-gnu
14-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
1513

1614
#include <omp.h>
1715
#include <stdio.h>

openmp/libomptarget/test/jit/empty_kernel_lvl1.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,5 @@
3232
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
3333
// UNSUPPORTED: x86_64-pc-linux-gnu
3434
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
35-
// UNSUPPORTED: s390x-ibm-linux-gnu
36-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
3735

3836
#include "empty_kernel.inc"

openmp/libomptarget/test/jit/empty_kernel_lvl2.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,5 @@
9292
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
9393
// UNSUPPORTED: x86_64-pc-linux-gnu
9494
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
95-
// UNSUPPORTED: s390x-ibm-linux-gnu
96-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
9795

9896
#include "empty_kernel.inc"

openmp/libomptarget/test/jit/type_punning.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
1313
// UNSUPPORTED: x86_64-pc-linux-gnu
1414
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
15-
// UNSUPPORTED: s390x-ibm-linux-gnu
16-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
1715

1816
// Ensure that there is only the kernel function left, not any outlined
1917
// parallel regions.

openmp/libomptarget/test/mapping/auto_zero_copy.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
// UNSUPPORTED: nvptx64-nvidia-cuda-LTO
1414
// UNSUPPORTED: x86_64-pc-linux-gnu
1515
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
16-
// UNSUPPORTED: s390x-ibm-linux-gnu
17-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
1816

1917
// REQUIRES: unified_shared_memory
2018

openmp/libomptarget/test/mapping/auto_zero_copy_globals.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
// UNSUPPORTED: nvptx64-nvidia-cuda-LTO
1010
// UNSUPPORTED: x86_64-pc-linux-gnu
1111
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
12-
// UNSUPPORTED: s390x-ibm-linux-gnu
13-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
1412

1513
// REQUIRES: unified_shared_memory
1614

openmp/libomptarget/test/offloading/barrier_fence.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
88
// UNSUPPORTED: x86_64-pc-linux-gnu
99
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
10-
// UNSUPPORTED: s390x-ibm-linux-gnu
11-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
1210

1311
#include <omp.h>
1412
#include <stdio.h>

openmp/libomptarget/test/offloading/bug49334.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
1010
// UNSUPPORTED: aarch64-unknown-linux-gnu
1111
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
12-
// UNSUPPORTED: s390x-ibm-linux-gnu
13-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
1412
// UNSUPPORTED: amdgcn-amd-amdhsa
1513
// UNSUPPORTED: nvptx64-nvidia-cuda
1614
// UNSUPPORTED: nvptx64-nvidia-cuda-LTO

openmp/libomptarget/test/offloading/default_thread_limit.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
1010
// UNSUPPORTED: x86_64-pc-linux-gnu
1111
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
12-
// UNSUPPORTED: s390x-ibm-linux-gnu
13-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
1412

1513
__attribute__((optnone)) int optnone() { return 1; }
1614

openmp/libomptarget/test/offloading/ompx_bare.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
// RUN: %libomptarget-compile-generic
2-
// RUN: env LIBOMPTARGET_INFO=63 %libomptarget-run-generic 2>&1 | \
3-
// RUN: %fcheck-generic
2+
// RUN: env LIBOMPTARGET_INFO=63 %libomptarget-run-generic 2>&1 | %fcheck-generic
43
//
54
// UNSUPPORTED: x86_64-pc-linux-gnu
65
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
76
// UNSUPPORTED: aarch64-unknown-linux-gnu
87
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
9-
// UNSUPPORTED: s390x-ibm-linux-gnu
10-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
118

129
#include <assert.h>
1310
#include <ompx.h>

openmp/libomptarget/test/offloading/ompx_coords.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
55
// UNSUPPORTED: aarch64-unknown-linux-gnu
66
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
7-
// UNSUPPORTED: s390x-ibm-linux-gnu
8-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
97

108
#include <omp.h>
119
#include <ompx.h>

openmp/libomptarget/test/offloading/ompx_saxpy_mixed.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
55
// UNSUPPORTED: aarch64-unknown-linux-gnu
66
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
7-
// UNSUPPORTED: s390x-ibm-linux-gnu
8-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
97

108
#include <math.h>
119
#include <omp.h>

openmp/libomptarget/test/offloading/parallel_target_teams_reduction.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
77
// UNSUPPORTED: x86_64-pc-linux-gnu
88
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
9-
// UNSUPPORTED: s390x-ibm-linux-gnu
10-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
119

1210
#include <iostream>
1311
#include <vector>

openmp/libomptarget/test/offloading/small_trip_count.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
1010
// UNSUPPORTED: x86_64-pc-linux-gnu
1111
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
12-
// UNSUPPORTED: s390x-ibm-linux-gnu
13-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
1412

1513
#define N 128
1614

openmp/libomptarget/test/offloading/small_trip_count_thread_limit.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
88
// UNSUPPORTED: x86_64-pc-linux-gnu
99
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
10-
// UNSUPPORTED: s390x-ibm-linux-gnu
11-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
1210

1311
int main(int argc, char *argv[]) {
1412
constexpr const int block_size = 256;

openmp/libomptarget/test/offloading/spmdization.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
1212
// UNSUPPORTED: x86_64-pc-linux-gnu
1313
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
14-
// UNSUPPORTED: s390x-ibm-linux-gnu
15-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
1614

1715
#include <omp.h>
1816
#include <stdio.h>

openmp/libomptarget/test/offloading/target_critical_region.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
// UNSUPPORTED: nvptx64-nvidia-cuda-LTO
77
// UNSUPPORTED: x86_64-pc-linux-gnu
88
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
9-
// UNSUPPORTED: s390x-ibm-linux-gnu
10-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
119
// UNSUPPORTED: amdgcn-amd-amdhsa
1210

1311
#include <omp.h>

openmp/libomptarget/test/offloading/thread_limit.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
1010
// UNSUPPORTED: x86_64-pc-linux-gnu
1111
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
12-
// UNSUPPORTED: s390x-ibm-linux-gnu
13-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
1412

1513
int main() {
1614
int n = 1 << 20;

openmp/libomptarget/test/ompt/target_memcpy.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
55
// UNSUPPORTED: x86_64-pc-linux-gnu
66
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
7-
// UNSUPPORTED: s390x-ibm-linux-gnu
8-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
97

108
/*
119
* Verify that for the target OpenMP APIs, the return address is non-null and

openmp/libomptarget/test/ompt/target_memcpy_emi.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
55
// UNSUPPORTED: x86_64-pc-linux-gnu
66
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
7-
// UNSUPPORTED: s390x-ibm-linux-gnu
8-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
97

108
/*
119
* Verify all three data transfer directions: H2D, D2D and D2H

openmp/libomptarget/test/ompt/veccopy.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
55
// UNSUPPORTED: x86_64-pc-linux-gnu
66
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
7-
// UNSUPPORTED: s390x-ibm-linux-gnu
8-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
97

108
/*
119
* Example OpenMP program that registers non-EMI callbacks

openmp/libomptarget/test/ompt/veccopy_data.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
55
// UNSUPPORTED: x86_64-pc-linux-gnu
66
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
7-
// UNSUPPORTED: s390x-ibm-linux-gnu
8-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
97

108
/*
119
* Example OpenMP program that registers EMI callbacks.

openmp/libomptarget/test/ompt/veccopy_disallow_both.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
55
// UNSUPPORTED: x86_64-pc-linux-gnu
66
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
7-
// UNSUPPORTED: s390x-ibm-linux-gnu
8-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
97

108
/*
119
* Example OpenMP program that shows that both EMI and non-EMI

openmp/libomptarget/test/ompt/veccopy_emi.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
55
// UNSUPPORTED: x86_64-pc-linux-gnu
66
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
7-
// UNSUPPORTED: s390x-ibm-linux-gnu
8-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
97

108
/*
119
* Example OpenMP program that registers EMI callbacks

openmp/libomptarget/test/ompt/veccopy_emi_map.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
55
// UNSUPPORTED: x86_64-pc-linux-gnu
66
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
7-
// UNSUPPORTED: s390x-ibm-linux-gnu
8-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
97

108
/*
119
* Example OpenMP program that shows that map-EMI callbacks are not supported.

openmp/libomptarget/test/ompt/veccopy_map.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
// UNSUPPORTED: aarch64-unknown-linux-gnu-LTO
55
// UNSUPPORTED: x86_64-pc-linux-gnu
66
// UNSUPPORTED: x86_64-pc-linux-gnu-LTO
7-
// UNSUPPORTED: s390x-ibm-linux-gnu
8-
// UNSUPPORTED: s390x-ibm-linux-gnu-LTO
97

108
/*
119
* Example OpenMP program that shows that map callbacks are not supported.

0 commit comments

Comments
 (0)