diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2000-10-17 20:21:45 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2000-10-17 20:21:45 +0000 |
commit | e6c774b42adff3c63cb512132d9a7c40ca99be72 (patch) | |
tree | 9bf9eceade177e288c05e6277411d7255b540a63 /gas/expr.c | |
parent | ea20a7da87b245e4eb49ccc0688b9052c8815fe1 (diff) | |
download | gdb-e6c774b42adff3c63cb512132d9a7c40ca99be72.zip gdb-e6c774b42adff3c63cb512132d9a7c40ca99be72.tar.gz gdb-e6c774b42adff3c63cb512132d9a7c40ca99be72.tar.bz2 |
2000-10-17 Kazu Hirata <kazu@hxi.com>
* debug.c: Fix formatting.
* depend.c: Likewise.
* dwarf2dbg.c: Likewise.
* dwarf2dbg.h: Likewise.
* ecoff.c: Likewise.
* expr.c: Likewise.
* expr.h: Likewise.
* flonum-konst.c: Likewise.
* frags.h: Likewise.
Diffstat (limited to 'gas/expr.c')
-rw-r--r-- | gas/expr.c | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -48,8 +48,7 @@ extern const char EXP_CHARS[], FLT_CHARS[]; /* We keep a mapping of expression symbols to file positions, so that we can provide better error messages. */ -struct expr_symbol_line -{ +struct expr_symbol_line { struct expr_symbol_line *next; symbolS *sym; char *file; @@ -217,8 +216,8 @@ expr_build_dot () and never write into the early words, thus they'll always be zero. I hate Dean's floating-point code. Bleh. */ LITTLENUM_TYPE generic_bignum[SIZE_OF_LARGE_NUMBER + 6]; -FLONUM_TYPE generic_floating_point_number = -{ + +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. */ @@ -1464,8 +1463,7 @@ static const operatorT op_encoding[256] = 7 * / % << >> 8 unary - unary ~ */ -static operator_rankT op_rank[] = -{ +static operator_rankT op_rank[] = { 0, /* O_illegal */ 0, /* O_absent */ 0, /* O_constant */ |