summaryrefslogtreecommitdiff
path: root/test/CodeGenOpenCL/lifetime.cl
blob: 430e0582aedaa4ee1cc0c5af4472f624cf74e12e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
// RUN: %clang_cc1 -emit-llvm -o - -triple amdgcn---amdgizcl %s | FileCheck %s -check-prefix=AMDGIZ

void use(char *a);

__attribute__((always_inline)) void helper_no_markers() {
  char a;
  use(&a);
}

void lifetime_test() {
// CHECK: @llvm.lifetime.start.p0i
// AMDGIZ: @llvm.lifetime.start.p5i
  helper_no_markers();
}