aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/union-4.c
blob: df9f36da09b5dffe8c82e380e8ac438c6bc73a92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-do compile } */
/* { dg-options "-O -fdump-rtl-cse1" } */

extern void abort(void);

typedef unsigned int uint32;
typedef unsigned long long uint64;

typedef union {
  uint32 i32;
  uint64 i64;
} u64;

void foo(void)
{
  u64 data;
  data.i64 = 1;
  if (data.i32 != 1)
    abort ();
}

/* { dg-final { scan-rtl-dump-not "abort" "cse1" { target i?86-*-* } } } */
/* { dg-final { cleanup-rtl-dump "cse1" } } */