Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / union-4.c
blob0ed98206c420443f71a0014c05e4904386874a84
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-*-* } } } */