gcc/gcc/testsuite/gcc.c-torture/execute/pr79043.c

22 lines
239 B
C

/* PR ipa/78791 */
int val;
int *ptr = &val;
float *ptr2 = &val;
static
__attribute__((always_inline, optimize ("-fno-strict-aliasing")))
typepun ()
{
*ptr2=0;
}
main()
{
*ptr=1;
typepun ();
if (*ptr)
__builtin_abort ();
}