aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Wstrict-aliasing-bogus-ref-all.c
blob: 7e8d1771568d532639b31ad153e60ddc8d8a4476 (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
30
31
32
33
34
35
36
37
38
39
40
41
/* { dg-do compile } */
/* { dg-options "-O2 -Wall" } */

struct g { long a; };
unsigned long f(struct g *a) { return *(unsigned long *)&a->a; }

struct A
{
  void *a;
};

int g(const struct A *x, long *y)
{
  typedef long __attribute__ ((may_alias)) long_a;
  *y = *(const long_a *) (&x->a);
  return 1;
}

void *a;

int
f0 (long *y)
{
  *y = *(const long *) &a; /* { dg-warning "will break" } */
  return 1;
}

int
f1 (long *y)
{
  typedef long __attribute__ ((may_alias)) long_a;
  *y = *(const long_a *) &a;
  return 1;
}

int
f2 (long *y)
{
  *y = *(const long *) &a; /* { dg-warning "will break" } */
  return 1;
}