whitespace/formatting changes

This commit is contained in:
Ken Raeburn 1994-01-28 00:58:00 +00:00
parent d5c551c9df
commit 351878df5a
1 changed files with 9 additions and 8 deletions

View File

@ -96,8 +96,7 @@ floating_constant (expressionP)
/* floating-point constant. */
int error_code;
error_code = atof_generic
(&input_line_pointer, ".", EXP_CHARS,
error_code = atof_generic (&input_line_pointer, ".", EXP_CHARS,
&generic_floating_point_number);
if (error_code)
@ -220,7 +219,8 @@ integer_constant (radix, expressionP)
if (carry)
{
if (leader < generic_bignum + SIZE_OF_LARGE_NUMBER - 1)
{ /* room to grow a longer bignum. */
{
/* room to grow a longer bignum. */
*++leader = carry;
}
}
@ -229,7 +229,8 @@ integer_constant (radix, expressionP)
/* input_line_pointer->after c. */
know (LITTLENUM_NUMBER_OF_BITS == 16);
if (leader < generic_bignum + 2)
{ /* will fit into 32 bits. */
{
/* will fit into 32 bits. */
number =
((generic_bignum[1] & LITTLENUM_MASK) << LITTLENUM_NUMBER_OF_BITS)
| (generic_bignum[0] & LITTLENUM_MASK);