f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
52 lines
736 B
C++
52 lines
736 B
C++
// RUN: %clang_cc1 -triple x86_64-apple-darwin -emit-llvm -o - %s
|
|
// RUN: %clang_cc1 -triple i386-apple-darwin -emit-llvm -o - %s
|
|
|
|
// PR5463
|
|
extern "C" int printf(...);
|
|
|
|
struct S {
|
|
double filler;
|
|
};
|
|
|
|
struct Foo {
|
|
Foo(void) : bar_(), dbar_(), sbar_() {
|
|
for (int i = 0; i < 5; i++) {
|
|
printf("bar_[%d] = %d\n", i, bar_[i]);
|
|
printf("dbar_[%d] = %f\n", i, dbar_[i]);
|
|
printf("sbar_[%d].filler = %f\n", i, sbar_[i].filler);
|
|
}
|
|
}
|
|
|
|
int bar_[5];
|
|
double dbar_[5];
|
|
S sbar_[5];
|
|
};
|
|
|
|
int test1(void) {
|
|
Foo a;
|
|
}
|
|
|
|
// PR7063
|
|
|
|
|
|
struct Unit
|
|
{
|
|
Unit() {}
|
|
Unit(const Unit& v) {}
|
|
};
|
|
|
|
|
|
struct Stuff
|
|
{
|
|
Unit leafPos[1];
|
|
};
|
|
|
|
|
|
int main()
|
|
{
|
|
|
|
Stuff a;
|
|
Stuff b = a;
|
|
|
|
return 0;
|
|
}
|