llvm-6502/test/FrontendC/attribute_constructor.c

7 lines
130 B
C
Raw Normal View History

// RUN: %llvmgcc %s -c -o - | llvm-dis | grep llvm.global_ctors
void foo() __attribute__((constructor));
void foo() {
bar();
}