blob: 5eb8cd1767bb3a5a8bfa7ba30b967bc9e1065163 [file] [log] [blame]
Rafael Espindola218935d2013-12-03 14:37:33 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm %s -o - | \
2// RUN: FileCheck %s
3// RUN: %clang_cc1 -triple i386-apple-darwin -emit-llvm %s -o - | \
4// RUN: FileCheck %s
Fariborz Jahanian0aed0222009-08-15 18:55:17 +00005
6extern "C" int printf(...);
7
8struct S {
9 S() { printf("S::S()\n"); }
10 int iS;
11};
12
13struct M {
14 S ARR_S;
15};
16
17int main() {
18 M m1;
19}
20
Rafael Espindola218935d2013-12-03 14:37:33 +000021// CHECK: call void @_ZN1SC1Ev