PR libfortran/64770 Segfault when trying to open existing file with status="new".
[official-gcc.git] / gcc / testsuite / gcc.dg / union-4.c
blobeb7f95b08020558517b0694fc747bc111250e135
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-rtl-cse1" } */
4 extern void abort(void);
6 typedef unsigned int uint32;
7 typedef unsigned long long uint64;
9 typedef union {
10 uint32 i32;
11 uint64 i64;
12 } u64;
14 void foo(void)
16 u64 data;
17 data.i64 = 1;
18 if (data.i32 != 1)
19 abort ();
22 /* { dg-final { scan-rtl-dump-not "abort" "cse1" { target i?86-*-* x86_64-*-* } } } */
23 /* { dg-final { cleanup-rtl-dump "cse1" } } */