aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr51761.c
blob: 68911c84ce109405b58e8ca63b0e5e943177efbb (plain)
1
2
3
4
5
6
7
8
9
10
/* PR middle-end/51761 */

struct S { unsigned int len; };
struct S foo (struct S);

struct S
bar (struct S x)
{
  return ({ struct S a = x; foo (a); });
}