blob: da17799dfa4254e7c8490e50dd9f4cc670e5eaed [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// RUN: %clang_cc1 -emit-llvm %s -o - -std=c++11 -triple %itanium_abi_triple | FileCheck %s
Fariborz Jahanian636a0ff2009-09-02 17:10:17 +00002
3extern "C" int printf(...);
4
5struct S {
6 S() { printf("S::S\n"); }
7};
8
9struct A {
10 double x;
11 A() : x(), y(), s() { printf("x = %f y = %x \n", x, y); }
12 int *y;
13 S s;
14};
15
16A a;
17
Richard Smith5f9a7e32012-11-12 21:38:00 +000018struct B {
19 B() = default;
20 B(const B&);
21};
22
23// CHECK-NOT: _ZL1b
24static B b;
25
26struct C {
27 ~C();
28};
29
30// CHECK: _ZL1c
31static C c[4];
32
Fariborz Jahanian636a0ff2009-09-02 17:10:17 +000033int main() {
34}
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -070035
36namespace PR22793 {
37template <typename>
38struct foo {
39protected:
40// CHECK-NOT: _ZN7PR227933fooIiED2Ev
41 ~foo() = default;
42 friend void func();
43};
44
45void func() { foo<int> f; }
46
47template struct foo<int>;
48}