Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / union-4.c
blobdf9f36da09b5dffe8c82e380e8ac438c6bc73a92
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-*-* } } } */
23 /* { dg-final { cleanup-rtl-dump "cse1" } } */