[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / OpenMP / amdgpu_try_catch.cpp
blob3ea1a76f2a68c5915846f6bc2dacad28180bdbf5
1 // REQUIRES: amdgpu-registered-target, staticanalyzer
3 /**
4 * The first four lines test that a warning is produced when enabling
5 * -Wopenmp-target-exception no matter what combination of -fexceptions and
6 * -fcxx-exceptions are set, as we want OpenMP to always allow exceptions in the
7 * target region but emit a warning instead.
8 */
10 // RUN: %clang_cc1 -fopenmp -triple amdgcn-amd-amdhsa -fopenmp-is-target-device -fcxx-exceptions -fexceptions %s -verify=with -Wopenmp-target-exception -analyze
11 // RUN: %clang_cc1 -fopenmp -triple amdgcn-amd-amdhsa -fopenmp-is-target-device -fcxx-exceptions -fexceptions %s -verify=with -Wopenmp-target-exception -analyze
12 // RUN: %clang_cc1 -fopenmp -triple amdgcn-amd-amdhsa -fopenmp-is-target-device -fexceptions %s -verify=with -Wopenmp-target-exception -analyze
13 // RUN: %clang_cc1 -fopenmp -triple amdgcn-amd-amdhsa -fopenmp-is-target-device %s -verify=with -Wopenmp-target-exception -analyze
15 /**
16 * The following four lines test that no warning is emitted when providing
17 * -Wno-openmp-target-exception no matter the combination of -fexceptions and
18 * -fcxx-exceptions.
21 // RUN: %clang_cc1 -fopenmp -triple amdgcn-amd-amdhsa -fopenmp-is-target-device -fcxx-exceptions -fexceptions %s -verify=without -Wno-openmp-target-exception -analyze
22 // RUN: %clang_cc1 -fopenmp -triple amdgcn-amd-amdhsa -fopenmp-is-target-device -fcxx-exceptions %s -verify=without -Wno-openmp-target-exception -analyze
23 // RUN: %clang_cc1 -fopenmp -triple amdgcn-amd-amdhsa -fopenmp-is-target-device -fexceptions %s -verify=without -Wno-openmp-target-exception -analyze
24 // RUN: %clang_cc1 -fopenmp -triple amdgcn-amd-amdhsa -fopenmp-is-target-device %s -verify=without -Wno-openmp-target-exception -analyze
26 /**
27 * Finally we should test that we only ignore exceptions in the OpenMP
28 * offloading tool-chain
31 // RUN: %clang_cc1 -triple amdgcn-amd-amdhsa %s -emit-llvm-only -verify=noexceptions
33 // noexceptions-error@38 {{cannot use 'try' with exceptions disabled}}
35 #pragma omp declare target
36 int foo(void) {
37 int error = -1;
38 try { // with-warning {{target 'amdgcn-amd-amdhsa' does not support exception handling; 'catch' block is ignored}}
39 error = 1;
41 catch (int e){
42 error = e;
44 return error;
46 #pragma omp end declare target
47 // without-no-diagnostics