blob: 77fc7c8cbd7f2be9ddba69634acca8303627c2f2 [file] [log] [blame]
Hans Wennborg442e4f72013-12-13 22:43:52 +00001// RUN: %clang_cc1 -cxx-abi itanium -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 {
Stephen Lin43622612013-08-15 06:47:53 +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};