aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr101437.c
blob: 96e7df89046b96a03a5eaf8c729ca170fd1ca55a (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
28
29
/* PR middle-end/101437 */

struct S { int : 1; };

void
foo (volatile struct S *p)
{
  struct S s = {};
  *p = s;
}

void
bar (volatile struct S *p)
{
  *p;
}

void
baz (volatile struct S *p)
{
  struct S s;
  s = *p;
}

void
qux (volatile struct S *p, volatile struct S *q)
{
  *p = *q;
}