blob: c1c76c4e1b18c9617d6d1d041493e88d8d98dbae [file] [log] [blame]
// REQUIRES: nvptx-registered-target
// RUN: %clang_cc1 -fopenmp -triple nvptx64 -fopenmp-is-target-device %s -emit-llvm -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 -emit-llvm -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