blob: 9b92fe5a8c2e29306e2a77106c6d3e48caa0ece7 [file] [edit]
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
// RUN: %clang_cc1 -emit-llvm -o - -triple amdgpu %s | FileCheck %s -check-prefix=AMDGCN
void use(char *a);
__attribute__((always_inline)) void helper_no_markers() {
char a;
use(&a);
}
void lifetime_test() {
// CHECK: @llvm.lifetime.start.p0
// AMDGCN: @llvm.lifetime.start.p5
helper_no_markers();
}