tcc-65816/test/tests/950511-1.c
2017-06-09 13:52:12 +02:00

12 lines
160 B
C

main ()
{
unsigned long long xx;
unsigned long long *x = (unsigned long long *) &xx;
*x = -3;
*x = *x * *x;
if (*x != 9)
abort ();
exit (0);
}