blob: f53732e471fef25a6bdfe079e48dcb34e4c14692 [file] [log] [blame]
Eli Friedmand49c7b62009-11-09 18:49:09 +00001// RUN: clang-cc %s -emit-llvm -o - | FileCheck %s
2
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