16 lines · plain
1// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s2// RUN: %clang_cc1 -emit-llvm -o - -triple amdgcn %s | FileCheck %s -check-prefix=AMDGCN3 4void use(char *a);5 6__attribute__((always_inline)) void helper_no_markers() {7 char a;8 use(&a);9}10 11void lifetime_test() {12// CHECK: @llvm.lifetime.start.p013// AMDGCN: @llvm.lifetime.start.p514 helper_no_markers();15}16