blob: 2dcf773346a87516add29e4523be05669d23939d [file] [log] [blame]
Anders Carlssonf54741e2009-06-16 03:37:31 +00001// RUN: clang-cc -emit-llvm %s -o %t -triple=x86_64-apple-darwin9 &&
2
3struct T {
4 T();
5 ~T();
6};
7
8void f(const T& t = T());
9
10void g() {
11 // RUN: grep "call void @_ZN1TC1Ev" %t | count 2 &&
12 // RUN: grep "call void @_ZN1TD1Ev" %t | count 2
13 f();
14 f();
15}