From: Kazu Hirata Date: Fri, 11 Aug 2000 17:50:25 +0000 (+0000) Subject: 2000-08-11 Kazu Hirata X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bc4466dcf10e23054dc420c9eee11210dce0e9d8;p=binutils-gdb.git 2000-08-11 Kazu Hirata * expr.c: Fix formatting. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index a1f079dca81..8d5e37d7ece 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2000-08-11 Kazu Hirata + + * expr.c: Fix formatting. + 2000-08-10 Jason Eckhardt * doc/c-i860.texi: Flesh out the i860 section more. diff --git a/gas/expr.c b/gas/expr.c index 1e785b2f277..09f38b1bb7e 100644 --- a/gas/expr.c +++ b/gas/expr.c @@ -219,11 +219,11 @@ expr_build_dot () LITTLENUM_TYPE generic_bignum[SIZE_OF_LARGE_NUMBER + 6]; FLONUM_TYPE generic_floating_point_number = { - &generic_bignum[6], /* Low. (JF: Was 0) */ - &generic_bignum[SIZE_OF_LARGE_NUMBER + 6 - 1], /* High. JF: (added +6) */ - 0, /* Leader. */ - 0, /* Exponent. */ - 0 /* Sign. */ + &generic_bignum[6], /* low. (JF: Was 0) */ + &generic_bignum[SIZE_OF_LARGE_NUMBER + 6 - 1], /* high. JF: (added +6) */ + 0, /* leader. */ + 0, /* exponent. */ + 0 /* sign. */ }; /* If nonzero, we've been asked to assemble nan, +inf or -inf. */ @@ -632,12 +632,12 @@ integer_constant (radix, expressionP) number |= (-(number >> (TARGET_WORD_SIZE - 1))) << (TARGET_WORD_SIZE - 1); #endif expressionP->X_add_number = number; - input_line_pointer--; /* Rstore following character. */ + input_line_pointer--; /* Restore following character. */ } /* Really just a number. */ } else { - /* not a small number */ + /* Not a small number. */ expressionP->X_op = O_big; expressionP->X_add_number = number; /* Number of littlenums. */ input_line_pointer--; /* -> char following number. */ @@ -785,7 +785,7 @@ operand (expressionP) /* Digits, assume it is a bignum. */ SKIP_WHITESPACE (); /* Leading whitespace is part of operand. */ - c = *input_line_pointer++; /* input_line_pointer->past char in c. */ + c = *input_line_pointer++; /* input_line_pointer -> past char in c. */ if (is_end_of_line[(unsigned char) c]) goto eol;