URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr27364.c] - Rev 688
Compare with Previous | Blame | View Log
int f(unsigned number_of_digits_to_use) { if (number_of_digits_to_use >1294) return 0; return (number_of_digits_to_use * 3321928 / 1000000 + 1) /16; } int main(void) { if (f(11) != 2) __builtin_abort (); exit (0); }