[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGenOpenCL / lifetime.cl
blob45df0c4038b05fb7cfadf5a476ecde7fc91610db
1 // RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -emit-llvm -o - -triple amdgcn %s | FileCheck %s -check-prefix=AMDGCN
4 void use(char *a);
6 __attribute__((always_inline)) void helper_no_markers() {
7 char a;
8 use(&a);
11 void lifetime_test() {
12 // CHECK: @llvm.lifetime.start.p0
13 // AMDGCN: @llvm.lifetime.start.p5
14 helper_no_markers();