aboutsummaryrefslogtreecommitdiff
path: root/clang/test/OpenMP/nvptx_throw_trap.cpp
blob: b13a09136c17d69c69c221d996a0870047adbf29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// REQUIRES: nvptx-registered-target

// RUN: %clang_cc1 -fopenmp -triple nvptx64 -fopenmp-is-target-device %s -S -Wno-openmp-target-exception -o - | FileCheck -check-prefix=DEVICE %s
// 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
// DEVICE: trap;
// DEVICE-NOT: __cxa_throw
// HOST: __cxa_throw
// HOST-NOT: trap;
#pragma omp declare target
void foo(void) {
	throw 404; 
}
#pragma omp end declare target