[TySan] Don't report globals with incomplete types. (#121922)
[llvm-project.git] / clang / test / OpenMP / nvptx_throw_trap.cpp
blobb13a09136c17d69c69c221d996a0870047adbf29
1 // REQUIRES: nvptx-registered-target
3 // RUN: %clang_cc1 -fopenmp -triple nvptx64 -fopenmp-is-target-device %s -S -Wno-openmp-target-exception -o - | FileCheck -check-prefix=DEVICE %s
4 // RUN: %clang_cc1 -fopenmp -triple x86_64-pc-linux-gnu -fopenmp-is-target-device -fcxx-exceptions %s -S -Wno-openmp-target-exception -o - | FileCheck -check-prefix=HOST %s
5 // DEVICE: trap;
6 // DEVICE-NOT: __cxa_throw
7 // HOST: __cxa_throw
8 // HOST-NOT: trap;
9 #pragma omp declare target
10 void foo(void) {
11 throw 404;
13 #pragma omp end declare target