URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20000523-1.c] - Rev 688
Compare with Previous | Blame | View Log
int main (void) { long long x; int n; if (sizeof (long long) < 8) exit (0); n = 9; x = (((long long) n) << 55) / 0xff; if (x == 0) abort (); x = (((long long) 9) << 55) / 0xff; if (x == 0) abort (); exit (0); }