summaryrefslogtreecommitdiff
path: root/test/FrontendC/attribute_constructor.c
blob: b2f7c9b19fc031244851576d5c46ef69c28b0b3b (plain)
1
2
3
4
5
6
// RUN: %llvmgcc %s -c -o - | llvm-dis | grep llvm.global_ctors

void foo() __attribute__((constructor));
void foo() {
  bar();
}