blob: f2c7f6d12a34ae60e4e6896b51c667ce0772f790 [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
Anders Carlssonc997d422010-01-02 01:01:18 +00008// CHECK: call void @_ZN1AC2Ei