blob: 184e0e4984b46f9f59250aaa80449b48a811c7dc [file] [log] [blame]
/* PR middle-end/82564 */
int
main ()
{
int t = 8, i;
typedef struct { char v[t]; } B;
B a, b;
B __attribute__ ((noinline)) f () { return b; }
for (i = 0; i < 8; i++)
b.v[i] = i;
a = f ();
return 0;
}