brintos

brintos / llvm-project-archived public Read only

0
0
Text · 270 B · 70b76b5 Raw
11 lines · c
1// RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -Oz -o - %s | FileCheck %s2 3// CHECK: define{{.*}} void @f() local_unnamed_addr [[ATTRS:#[0-9]+]] {4void f(void) __attribute__((leaf));5 6void f(void)7{8}9 10// CHECK: attributes [[ATTRS]] = { {{.*}}nocallback{{.*}} }11