blob: b7fcc8260dc30488c169f9b3c02c0b7fc01ceb3c [file] [log] [blame]
/* 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 ();
}