Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / OpenMP / nvptx_throw_trap.cpp
blobc1c76c4e1b18c9617d6d1d041493e88d8d98dbae
1 // REQUIRES: nvptx-registered-target
3 // RUN: %clang_cc1 -fopenmp -triple nvptx64 -fopenmp-is-target-device %s -emit-llvm -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 -emit-llvm -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