2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr38271.c
blob2c64a9b34a624e0f04b7f4987ccc0109d42ab266
1 /* { dg-do compile } */
2 /* { dg-options "-Wuninitialized" } */
4 struct xxx {
5 short a;
6 short b;
7 void *c;
8 };
10 void bar(struct xxx);
12 void foo(struct xxx *p, int i)
14 struct xxx s0 = *p;
15 struct xxx s = s0;
16 if (s.a) i++;
17 bar(s);