blob: 691795f77619a8b51fd3edba30311af8c293770a [file] [log] [blame]
Douglas Gregor944ed3b2011-02-19 21:54:50 +00001// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2
3// CHECK: @llvm.global_ctors
4
5// PR6521
6void bar();
7struct Foo {
8 // CHECK: define linkonce_odr void @_ZN3Foo3fooEv
9 static void foo() __attribute__((constructor)) {
10 bar();
11 }
12};