blob: ce6cc0e846e2075c0841df658001e8f79742ed11 [file] [log] [blame]
Rafael Espindolab6faeca2013-12-03 13:57:25 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin -std=c++11 -emit-llvm %s -o - | \
2// RUN: FileCheck %s
3// RUN: %clang_cc1 -triple i386-apple-darwin -std=c++11 -emit-llvm %s -o - | \
4// RUN: FileCheck %s
Fariborz Jahanian5aec1b52009-09-25 18:11:25 +00005
Fariborz Jahanian49850df2009-09-25 18:59:21 +00006struct A { A(const A&, int i1 = 1); };
Fariborz Jahanian5aec1b52009-09-25 18:11:25 +00007
8struct B : A { };
9
10A f(const B &b) {
11 return b;
12}
13
Rafael Espindolab6faeca2013-12-03 13:57:25 +000014// CHECK: call void @_ZN1AC1ERKS_i