aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/pr51628-27.c
blob: 016a68f6549d19e3626ee6e5990b5a3252a892b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR c/51628.  */
/* { dg-do compile } */
/* { dg-options "-O" } */

struct A { int i; } __attribute__ ((packed));
struct B { struct A a; };
struct C { struct B b; };

extern struct C *p;

int* g8 (void) { return &p->b.a.i; }
/* { dg-warning "may result in an unaligned pointer value" "" { target { ! default_packed } } .-1 } */