blob: a0977a7e690a6d17ba41bc77f55e5c9a04d1d131 [file] [log] [blame]
Tim Northover1060eae2013-06-21 22:49:34 +00001// RUN: %clang_cc1 -triple armv7-apple-ios -x c++ -emit-llvm -o - %s | FileCheck %s
Tim Northovera2ee4332014-03-29 15:09:45 +00002// RUN: %clang_cc1 -triple arm64-apple-ios -x c++ -emit-llvm -o - %s | FileCheck %s
Tim Northover1060eae2013-06-21 22:49:34 +00003
4// According to the Itanium ABI (3.1.1), types with non-trivial copy
5// constructors passed by value should be passed indirectly, with the caller
6// creating a temporary.
7
8struct Empty;
9
10struct Empty {
11 Empty(const Empty &e);
12 bool check();
13};
14
15bool foo(Empty e) {
16// CHECK: @_Z3foo5Empty(%struct.Empty* %e)
17// CHECK: call {{.*}} @_ZN5Empty5checkEv(%struct.Empty* %e)
18 return e.check();
19}
20
21void caller(Empty &e) {
Hal Finkela2347ba2014-07-18 15:52:10 +000022// CHECK: @_Z6callerR5Empty(%struct.Empty* dereferenceable({{[0-9]+}}) %e)
Tim Northover1060eae2013-06-21 22:49:34 +000023// CHECK: call {{.*}} @_ZN5EmptyC1ERKS_(%struct.Empty* [[NEWTMP:%.*]], %struct.Empty*
24// CHECK: call {{.*}} @_Z3foo5Empty(%struct.Empty* [[NEWTMP]])
25 foo(e);
26}