[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / copy-constructor-elim-2.cpp
bloba8ce437da831b202c81c65f1a9ef376c79c8bf21
1 // RUN: %clang_cc1 %std_cxx11-14 -no-enable-noundef-analysis -triple armv7-none-eabi -emit-llvm -o - %s | FileCheck %s --check-prefixes=CHECK,PRE17
2 // RUN: %clang_cc1 %std_cxx17- -no-enable-noundef-analysis -triple armv7-none-eabi -emit-llvm -o - %s | FileCheck %s --check-prefixes=CHECK,CXX17
4 struct A { int x; A(int); ~A(); };
5 A f() { return A(0); }
6 // CHECK-LABEL: define{{.*}} void @_Z1fv
7 // CHECK: call {{.*}} @_ZN1AC1Ei
8 // CHECK-NEXT: ret void
10 // Verify that we do not elide copies when constructing a base class before C++17.
11 namespace no_elide_base {
12 struct Base {
13 Base(const Base&);
14 ~Base();
17 struct Other {
18 operator Base() const;
21 struct Derived : public virtual Base {
22 Derived(const Other &O);
25 // CHECK: define {{.*}} @_ZN13no_elide_base7DerivedC1ERKNS_5OtherE(ptr {{[^,]*}} returned {{[^,]*}} %this, ptr nonnull align {{[0-9]+}} dereferenceable({{[0-9]+}}) %O) unnamed_addr
26 Derived::Derived(const Other &O)
27 // CHECK: call {{.*}} @_ZNK13no_elide_base5OthercvNS_4BaseEEv
28 // PRE17: call {{.*}} @_ZN13no_elide_base4BaseC2ERKS0_
29 // PRE17: call {{.*}} @_ZN13no_elide_base4BaseD1Ev
30 // CXX17-NOT: call
31 : Base(O)
33 // CHECK: ret
37 // PR8683.
39 namespace PR8683 {
41 struct A {
42 A();
43 A(const A&);
44 A& operator=(const A&);
47 struct B {
48 A a;
51 void f() {
52 // Verify that we don't mark the copy constructor in this expression as elidable.
53 // CHECK: call {{.*}} @_ZN6PR86831AC1ERKS0_
54 A a = (B().a);
59 namespace PR12139 {
60 struct A {
61 A() : value(1) { }
62 A(A const &, int value = 2) : value(value) { }
63 int value;
65 static A makeA() { A a; a.value = 2; return a; }
68 // CHECK-LABEL: define{{.*}} i32 @_ZN7PR121394testEv
69 int test() {
70 // CHECK: call void @_ZN7PR121391A5makeAEv
71 // CHECK-NEXT: call ptr @_ZN7PR121391AC1ERKS0_i
72 A a(A::makeA(), 3);
73 // CHECK-NEXT: getelementptr inbounds
74 // CHECK-NEXT: load
75 // CHECK-NEXT: ret i32
76 return a.value;
80 namespace ElidableCallIsNotCopyCtor {
81 struct A { A(const A&); };
82 struct B : A {
83 B(B&);
84 B(A);
85 B(int);
87 void f() {
88 // Before C++17, we construct via B(int) then B(A). The B(A) construction is
89 // elidable, but we don't have an AST representation for the case where we
90 // must elide not only a constructor call but also some argument
91 // conversions, so we don't elide it.
92 // CHECK-LABEL: define{{.*}} void @_ZN25ElidableCallIsNotCopyCtor1fEv(
93 // CHECK: call {{.*}} @_ZN25ElidableCallIsNotCopyCtor1BC1Ei(
94 // PRE17: call {{.*}} @_ZN25ElidableCallIsNotCopyCtor1AC1ERKS0_(
95 // PRE17: call {{.*}} @_ZN25ElidableCallIsNotCopyCtor1BC1ENS_1AE(
96 // CXX17-NOT: call
97 // CHECK: ret
98 B b = 0;