aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr93776.c
blob: 3852736c040c0612a26b684e49e7dac076c40349 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* This used to ICE in SRA as SRA got
   confused by the zero signed assigment. */

struct empty {};
struct s { int i; };
struct z
{
  int j;
  struct empty e;
  struct s s;
  int k;
};

void bar (struct z);
void baz (int);

void foo (void)
{
  struct z z, z2;

  z.k = 8;
  z2.s.i = 1;
  z = z2;
  bar (z);
  z.e = (struct empty) {};
  baz (z.k);
}