aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/copy-in-cplus-object.cpp
blob: cac6155f5cf1b7967ebab4a49a122ffa64e1f4a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// RUN: %clang_cc1 %s -fblocks -triple x86_64-apple-darwin -emit-llvm -o - | FileCheck %s

struct S {
  S(const char *);
  ~S();
};

struct TestObject
{
	TestObject(const TestObject& inObj, int def = 100,  const S &Silly = "silly");
	TestObject();
	TestObject& operator=(const TestObject& inObj);
	int version() const;

};

void testRoutine() {
    TestObject one;
    int (^V)() = ^{ return one.version(); };
}

// CHECK: call void @_ZN10TestObjectC1Ev
// CHECK: call void @_ZN1SC1EPKc
// CHECK: call void @_ZN10TestObjectC1ERKS_iRK1S
// CHECK: call void @_ZN1SD1Ev