blob: ec27ed210ce760fa17e05048a3291c15bd95b93e [file] [log] [blame]
Hans Wennborgc9bd88e2014-01-14 19:35:09 +00001// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s
Douglas Gregord66828d2011-02-19 21:54:50 +00002
3// CHECK: @llvm.global_ctors
4
5// PR6521
6void bar();
7struct Foo {
David Blaikieea3e51d2015-06-29 17:29:50 +00008 // CHECK-LABEL: define linkonce_odr {{.*}}void @_ZN3Foo3fooEv
Douglas Gregord66828d2011-02-19 21:54:50 +00009 static void foo() __attribute__((constructor)) {
10 bar();
11 }
12};