blob: 387fc71db13dcec155bd4548b992b5f207e01e36 (
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
|
/* PR c/51628. */
/* { dg-do compile } */
/* { dg-options "-O" } */
struct A { __complex int i; };
struct B { struct A a; };
struct C { struct B b __attribute__ ((packed)); };
/* { dg-warning "attribute ignored" "" { target default_packed } .-1 } */
extern struct C *p;
int*
foo1 (void)
{
return &__real(p->b.a.i);
/* { dg-warning "may result in an unaligned pointer value" "" { target { ! default_packed } } .-1 } */
}
int*
foo2 (void)
{
return &__imag(p->b.a.i);
/* { dg-warning "may result in an unaligned pointer value" "" { target { ! default_packed } } .-1 } */
}
|