Sign in
llvm
/
llvm-project
/
a408a0c31c87c7448cc8538d24a66b7941c136d7
/
.
/
clang
/
test
/
CodeGen
/
attribute_constructor.c
blob: 9e19679209f88c736526b3202e92453f66214db6 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm -o - | grep llvm.global_ctors
extern
int
bar
();
void
foo
(
void
)
__attribute__
((
constructor
));
void
foo
(
void
)
{
bar
();
}