aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr101562.c
blob: ea4a5f7103a2938fe66d03aeebeed5cc9b6f0f06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* PR rtl-optimization/101562 */

struct S { char c; };
void baz (struct S a, struct S b);

void
foo (void)
{
  struct S x[1];
  *(short *)&x[0] = 256;
  baz (x[0], x[1]);
}

void
bar (void)
{
  struct S x[1];
  x[0].c = 0;
  x[1].c = 1;
  baz (x[0], x[1]);
}