bolt/deps/llvm-18.1.8/clang/test/CodeGen/attr-leaf.c
2025-02-14 19:21:04 +01:00

10 lines
270 B
C

// RUN: %clang_cc1 -triple x86_64-linux-gnu -emit-llvm -Oz -o - %s | FileCheck %s
// CHECK: define{{.*}} void @f() local_unnamed_addr [[ATTRS:#[0-9]+]] {
void f(void) __attribute__((leaf));
void f(void)
{
}
// CHECK: attributes [[ATTRS]] = { {{.*}}nocallback{{.*}} }