Home
last modified time | relevance | path

Searched refs:too_many_digits (Results 1 – 3 of 3) sorted by relevance

/toolchain/binutils/binutils-2.27/gas/
Dexpr.c256 int too_many_digits = 0; /* If we see >= this number of. */ in integer_constant() local
342 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()
DChangeLog-9899477 * expr.c (integer_constant): Correct too_many_digits calculation
DChangeLog-92957649 * expr.c (integer_constant): Fix computation of too_many_digits.