blob: 971757d241b44642902df23e2c6a5f8fe5f50439 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
Eli Friedmand49c7b62009-11-09 18:49:09 +00002
3// Check that call to constructor for struct A is generated correctly.
4struct A { A(int x = 2); };
5struct B : public A {};
6B x;
7
8// CHECK: call void @_ZN1AC1Ei