aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/pr51628-10.c
blob: a09f4ef4efab3916452084c73af8f0a6ed237fb2 (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 run { target int128 } } */
/* { dg-options "-O2" } */

struct pair_t
{
  char c;
  __int128_t i;
} __attribute__ ((packed));

typedef struct unaligned_int128_t_
{
  __int128_t value;
} __attribute__((packed, may_alias)) unaligned_int128_t;

struct pair_t p = {0, 1};
unaligned_int128_t *addr = (unaligned_int128_t *) &p.i;

int 
main() 
{
  addr->value = ~(__int128_t)0;
  return (p.i != 1) ? 0 : 1;
}