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

6 lines
231 B
C

// RUN: %clang_cc1 -triple x86_64-unknown-linux -default-function-attr foo=bar -emit-llvm %s -o - | FileCheck %s
// CHECK: define{{.*}} void @foo() #[[X:[0-9]+]]
void foo(void) {}
// CHECK: attributes #[[X]] = {{.*}} "foo"="bar"