Searched refs:too_many_digits (Results 1 – 3 of 3) sorted by relevance
256 int too_many_digits = 0; /* If we see >= this number of. */ in integer_constant() local342 too_many_digits = valuesize + 1; in integer_constant()346 too_many_digits = (valuesize + 2) / 3 + 1; in integer_constant()350 too_many_digits = (valuesize + 3) / 4 + 1; in integer_constant()354 too_many_digits = (valuesize + 11) / 4; /* Very rough. */ in integer_constant()367 small = (input_line_pointer - start - 1) < too_many_digits; in integer_constant()
477 * expr.c (integer_constant): Correct too_many_digits calculation
7649 * expr.c (integer_constant): Fix computation of too_many_digits.