blob: b2f7c9b19fc031244851576d5c46ef69c28b0b3b [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc %s -c -o - | llvm-dis | grep llvm.global_ctors
2
3void foo() __attribute__((constructor));
4void foo() {
5 bar();
6}