i386: Fix AVX512 intrin macro typo
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / alias-1.c
blobd542f23b3b5dc86b256550c8b0063494b82e7dcd
1 int val;
3 int *ptr = &val;
4 float *ptr2 = (float *) &val;
6 __attribute__((optimize ("-fno-strict-aliasing")))
7 void
8 typepun (void)
10 *ptr2=0;
13 int
14 main(void)
16 *ptr=1;
17 typepun ();
18 if (*ptr)
19 __builtin_abort ();