minix/external/bsd/llvm/dist/clang/test/CodeGenCXX/cxx11-unrestricted-union.cpp
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

76 lines
1.1 KiB
C++

// RUN: %clang_cc1 -std=c++11 -emit-llvm %s -o - | FileCheck %s
struct A {
A(); A(const A&); A(A&&); A &operator=(const A&); A &operator=(A&&); ~A();
};
struct B {
B(); B(const B&); B(B&&); B &operator=(const B&); B &operator=(B&&); ~B();
};
union U {
U();
U(const U &);
U(U &&);
U &operator=(const U&);
U &operator=(U&&);
~U();
A a;
int n;
};
// CHECK-NOT: _ZN1A
U::U() {}
U::U(const U&) {}
U::U(U&&) {}
U &U::operator=(const U&) { return *this; }
U &U::operator=(U &&) { return *this; }
U::~U() {}
struct S {
S();
S(const S &);
S(S &&);
S &operator=(const S&);
S &operator=(S&&);
~S();
union {
A a;
int n;
};
B b;
int m;
};
// CHECK: _ZN1SC2Ev
// CHECK-NOT: _ZN1A
// CHECK: _ZN1BC1Ev
S::S() {}
// CHECK-NOT: _ZN1A
// CHECK: _ZN1SC2ERKS_
// CHECK-NOT: _ZN1A
// CHECK: _ZN1BC1Ev
S::S(const S&) {}
// CHECK-NOT: _ZN1A
// CHECK: _ZN1SC2EOS_
// CHECK-NOT: _ZN1A
// CHECK: _ZN1BC1Ev
S::S(S&&) {}
// CHECK-NOT: _ZN1A
// CHECK-NOT: _ZN1B
S &S::operator=(const S&) { return *this; }
S &S::operator=(S &&) { return *this; }
// CHECK: _ZN1SD2Ev
// CHECK-NOT: _ZN1A
// CHECK: _ZN1BD1Ev
S::~S() {}
// CHECK-NOT: _ZN1A