More comment fixes to make the code clearer.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index 695c972c9b38021069e07007ce9921797b0f9317..36ebe41edf3a17510480965babbbf8191178f921 100644 (file)
@@ -1,3 +1,145 @@
+Wed Oct 22 13:04:52 1997  Jeffrey A Law  (law@cygnus.com)
+
+       * dbxread.c: Fix various violations of the GNU coding and
+       formatting standards.  Update/add comments to make code
+       clearer.
+       (process_later): Use xrealloc instead of realloc.  
+
+       * symtab.c: Include inferior.h.
+
+Tue Oct 21 14:15:26 1997  Per Bothner  <bothner@cygnus.com>
+
+       * ch-exp.c:  Rename FIELD_NAME to DOT_FIELD_NAME (to avoid conflict).
+
+Fri Oct 17 13:22:02 1997  Stan Shebs  <shebs@andros.cygnus.com>
+
+       * infcmd.c: Improve grammar of "set args" help.
+
+Thu Oct 16 15:03:58 1997  Michael Meissner  <meissner@cygnus.com>
+
+       * remote-sds.c (sds_load): Properly declare as static.
+
+Wed Oct 15 10:27:14 1997  Doug Evans  <dje@canuck.cygnus.com>
+
+       * config/sparc/tm-sparc.h (FIX_CALL_DUMMY): Mask off displacement
+       to 30 bits in call insn to handle --enable-64-bit-bfd.
+       (STORE_STRUCT_RETURN): Change to handle --enable-64-bit-bfd.
+
+Tue Oct 14 22:13:27 1997  Dawn Perchik  <dawn@cygnus.com>
+
+       * stabsread.c: Make ref_map entries dynamically allocated.
+
+Thu Oct  9 12:37:57 1997  Frank Ch. Eigler  <fche@cygnus.com>
+
+       * printcmd.c (print_address_symbolic, address_info): Mask
+       target-specific flag bits from PC, for more aesthetic disassembly.
+       * config/mips/tm-mips.h: Added PC masking for MIPS family
+       (especially the MIPS16).
+
+Sat Oct  4 18:45:44 1997  Mark Alexander  <marka@cygnus.com>
+
+       * remote-mips.c (mips-initialize): Work around flakiness in
+       some versions of PMON after loading a program.
+
+Fri Oct  3 15:49:18 1997  Per Bothner  <bothner@cygnus.com>
+
+       * c-lang.h, cp-valprint.c (static_field_print):  Make non-static.
+       * parse.c, parser-defs.h (length_of_subexp):  Make non-static.
+       * jv-exp.y (FieldAccess):  Handle dollar-VARIABLE as primary.
+       (ArrayAccess):  Likewise.  Also remove warnings.
+       (CastExpression):  Implement (typename) UnaryExpression.
+       (push_qualified_expression_name):  Fix small bug.
+       * jv-lang.c:  Use TYPE_TAG_NAME, not TYPE_NAME for class names.
+       (_initialize_jave_language):  Fix typo (jave -> java).
+       (java_language):  Java does *not* have C-style arrays.
+       (java_class_from_object):  Make more general (and complicated).
+       (java_link_class_type):  Fix typo "super" -> "class".  Handle arrays.
+       (java_emit_char, java_printchar):  New function.
+       (evaluate_subexp_java case BINOP_SUBSCRIPT):  Handle Java arrays.
+       * jv-valprint.c (java_value_print):  Implement printing of Java arrays.
+       (java_print_value_fields):  New function.
+       (java_val_print):  Better printing of TYPE_CODE_CHAR, TYPE_CODE_STRUCT.
+
+Fri Oct  3 09:52:26 1997  Mark Alexander  <marka@cygnus.com>
+
+       * config/mips/tm-mips.h (MAKE_MSYMBOL_SPECIAL): Force MIPS16
+       addresses to be odd.
+       (MIPS_FPU_SINGLE_REGSIZE, MIPS_FPU_DOUBLE_REGSIZE): Define.
+       * mips-tdep.c (mips_extract_return_value): Doubles aren't
+       returned in FP0 if FP registers are single-precision only.
+start-sanitize-r5900
+       * config/mips/tm-r5900.h (MIPS_LAST_FP_ARG_REGNUM): Redefine
+       to disable use of FP registers for function arguments.
+end-sanitize-r5900
+
+Mon Sep 29 23:03:03 1997  Mark Alexander  <marka@cygnus.com>
+
+       * mips-tdep.c (set_reg_offset): New function.
+       (mips16_heuristic_proc_desc): Calculate offsets of registers
+       saved by entry pseudo-op after rest of prologue has been read.
+       Use set_reg_offset to ignore all but the first save of a given
+       register.
+       (mips32_heuristic_proc_desc): Initialize frame adjustment value.
+       * remote-sim.c (gdbsim_store_register): Don't update registers
+       that have a null or empty name.
+       * findvar.c (read_register_bytes): Don't fetch registers
+       that have a null or empty name.
+
+Tue Sep 30 13:35:54 1997  Andrew Cagney  <cagney@b1.cygnus.com>
+
+start-sanitize-r5900
+       * config/mips/tm-r5900.h (REGISTER_NAMES, NUM_REGS): Overridei
+       instead of define.
+
+       * config/mips/tm-r5900.h (REGISTER_NAMES): Define.
+       (NUM_REGS): Ditto.
+
+end-sanitize-r5900
+       * config/mips/tm-mips.h (NUM_REGS): Define conditionally.
+       (REGISTER_NAMES): Ditto.
+
+Fri Sep 26 17:32:22 1997  Jason Molenda  (crash@pern.cygnus.com)
+
+       * command.c (add_cmd, add_show_from_set): Insert new commands in
+       alphabetical order.
+
+Fri Sep 26 12:22:00 1997  Mark Alexander  <marka@cygnus.com>
+
+       * config/mips-tm-mips.h (mips_extra_func_info): New frame_adjust
+       member for storing offset of MIPS16 frame pointer from SP.
+       * mips-tdep.c: Use RA_REGNUM instead of hardcoded 31 throughout.
+       (PROC_FRAME_ADJUST): Define.
+       (mips16_heuristic_proc_desc): Store frame pointer adjustment value.
+       (get_frame_pointer): Use frame pointer adjustment value when
+       calculating frame address.
+       * remote-sim.c (gdbsim_fetch_register): Don't fetch registers
+       that have a null or empty name.
+start-sanitize-tx19
+       * config/mips/tm-tx19.h (MIPS_DEFAULT_FPU_TYPE): Define.
+       (REGISTER_NAMES): Redefine to eliminate FP registers.
+       * config/mips/tm-tx19l.h: Ditto.
+end-sanitize-tx19
+
+Fri Sep 26 12:40:51 1997  Jeffrey A Law  (law@cygnus.com)
+                          Michael Snyder  (msnyder@cleaver.cygnus.com)
+
+start-sanitize-r5900
+       * configure.tgt: Set gdb_target to r5900.
+       * config/mips/tm-r5900.h, config/mips/r5900.mt: New files
+end-sanitize-r5900
+       * mips-tdep.c (_initialize_mips_tdep): Allow target files to
+       override default FPU type.
+
+Fri Sep 26 10:33:54 1997  Felix Lee  <flee@cygnus.com>
+
+       * configure.tgt (v850-*-*): necmsg.lib instead of v850.lib.
+
+Wed Sep 24 14:02:09 1997  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * config/v850/tm-v850.h (BREAKPOINT): Use 1 word DIVH insn with
+       RRRRR=0 for simulator breakpoint. Previous breakpoint insn was two
+       words.
+
 Thu Sep 18 15:07:46 1997  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * ser-e7kpc.c (get_ds_base): Only use under Windows.
This page took 0.024472 seconds and 4 git commands to generate.