diff options
author | Pierre Muller <muller@sourceware.org> | 2009-10-06 23:27:05 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2009-10-06 23:27:05 +0000 |
commit | 905e0470f48bf087826c6779f0140f148e03c13a (patch) | |
tree | 1ace0c1caa8c0d2a06841dad8bcb108bdd802e2c /gdb/doublest.c | |
parent | 364c7fa5c98a7e2d75fe33ecb1ec4f7260849731 (diff) | |
download | gdb-905e0470f48bf087826c6779f0140f148e03c13a.zip gdb-905e0470f48bf087826c6779f0140f148e03c13a.tar.gz gdb-905e0470f48bf087826c6779f0140f148e03c13a.tar.bz2 |
ARI fix: OP eol rule.
* doublest.c (floatformat_from_length): Avoid operator at end of line.
* dwarf2-frame.c (dwarf2_build_frame_info): Idem.
* dwarf2read.c (read_array_order, dwarf_decode_macros): Idem.
* eval.c (evaluate_subexp_standard): Idem.
* event-loop.c (create_timer, handle_timer_event): Idem.
* expprint.c (print_subexp_standard): Idem.
* f-exp.y (variable): Idem.
* f-typeprint.c (f_print_type): Idem.
Diffstat (limited to 'gdb/doublest.c')
-rw-r--r-- | gdb/doublest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/doublest.c b/gdb/doublest.c index 2e0bdda..54956e1 100644 --- a/gdb/doublest.c +++ b/gdb/doublest.c @@ -778,8 +778,8 @@ floatformat_from_length (struct gdbarch *gdbarch, int len) both in processor and in memory. The code below accepts the real bit size. */ else if ((gdbarch_long_double_format (gdbarch) != NULL) - && (len * TARGET_CHAR_BIT == - gdbarch_long_double_format (gdbarch)[0]->totalsize)) + && (len * TARGET_CHAR_BIT + == gdbarch_long_double_format (gdbarch)[0]->totalsize)) format = gdbarch_long_double_format (gdbarch) [gdbarch_byte_order (gdbarch)]; else |