------- Comment #10 from pinskia at gcc dot gnu dot org 2006-04-30 18:21 ------- Here is the reduced testcase: 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 (); } -- pinskia at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |blocker http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27364