]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGenCXX/constructor-attr.cpp
Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3):
[FreeBSD/FreeBSD.git] / test / CodeGenCXX / constructor-attr.cpp
1 // RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2
3 // CHECK: @llvm.global_ctors
4
5 // PR6521
6 void bar();
7 struct Foo {
8   // CHECK-LABEL: define linkonce_odr void @_ZN3Foo3fooEv
9   static void foo() __attribute__((constructor)) {
10     bar();
11   }
12 };