* ppcbug-rom.c (ppcbug_regnames[]): Make array size implicit.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index ade4f40819012910829a97efaf47b5df51d50b1f..ccf3b51f41a742b892038c56df7cc26e03e627f2 100644 (file)
@@ -1,3 +1,489 @@
+2000-07-14  Nicholas Duffek  <nsd@redhat.com>
+
+       * ppcbug-rom.c (ppcbug_regnames[]): Make array size implicit.
+       * rs6000-tdep.c (DEFAULT_LR_SAVE): Move to config/*/tm-*.h.
+       (rs6000_gdbarch_init): Use generic_pc_in_call_dummy instead of
+       rs6000_pc_in_call_dummy.
+       * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Move here from
+       rs6000-tdep.c.
+       * config/powerpc/tm-ppc-eabi.h: Remove various definitions
+       handled by multi-arched rs6000-tdep.c.
+
+2000-07-14  Nick Clifton  <nickc@cygnus.com>
+
+       * config/mcore/tm-mcore.h (SKIP_PROLOGUE): Fix defintion to avoid
+       assignment.
+
+2000-07-13  Michael Snyder  <msnyder@cleaver.cygnus.com>
+
+       * parse.c: Include inferior.h.
+
+2000-07-12  Michael Snyder  <msnyder@cleaver.cygnus.com>
+
+       * regcache.c (registers_changed, registers_fetched): Use 
+       ARCH_NUM_REGS directly, eliminating an unnecessary variable.
+
+       This change adds pseudo-register capability to GDB.
+       Pseudo-registers are handled like registers, but they
+       don't come from or live on the target.  They may be 
+       aliases for an existing register, or they may be computed.
+       * inferior.h (NUM_PSEUDO_REGISTERS): Define default of zero.
+       (ARCH_FETCH_PSEUDO_REGISTERS): Define default of no-op.
+       (ARCH_STORE_PSEUDO_REGISTERS): Define default of no-op.
+       # regcache.c (registers_changed): Mark pseudo-registers 
+       invalid, as well as real registers.
+       (registers_fetched): Do not mark pseudo-registers as fetched
+       at the same time as other (real) registers.
+       (read_register_bytes): Fetch pseudo-registers (if any) from
+       the target architecture module instead of from the target.
+       (read_register_gen): Ditto.
+       (read_register): Ditto.
+       (write_register_bytes): Store pseudo-registers (if any) to
+       the target architecture module instead of to the target.
+       (write_register_gen): Ditto.
+       (write_register): Ditto.
+       (build_regcache): Allocate enough register_valid space for
+       pseudo-registers as well as normal (real) ones.
+       * parse.c (target_map_name_to_register): Include pseudo-regs.
+       
+Tue Jul 11 19:45:42 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * valops.c (value_cast): Allow cast from INT, ENUM or RANGE to
+       POINTER.
+
+2000-07-11  Scott Bambrough <scottb@netwinder.org>
+
+       * command.c (do_setshow_command): Fix typo in var_auto_boolean
+       case.
+
+Tue Jul 11 20:38:36 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * mips-tdep.c: General cleanup.  Delete all #if 0 code.  Convert
+       all old style K&R function definitions to ISO-C.
+       (struct gdbarch_tdep): Add mips_abi_string.
+       (mips_gdbarch_init): Initialize.
+       (mips_dump_tdep): Print mips_abi_string and other values.
+       (mips_push_arguments): Add more detailed tracing.
+
+Tue Jul 11 20:16:09 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * mips-tdep.c (mips32_next_pc, mips16_next_pc,
+       read_next_frame_reg, mips_push_dummy_frame, mips_skip_stub,
+       mips_saved_pc_after_call): Use read_signed_register when
+       extracting register value.  Ensures all addresses are sign
+       extended.
+       (mips_read_pc): New function.  Return sign extended address.
+       (mips_gdbarch_init): Set gdbarch_read_pc.
+
+Tue Jul 11 19:06:29 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * remote-mips.c (mips_request): Change all arguments to ULONGEST.
+       (mips_exit_debug, mips_resume, mips_initialize, mips_wait,
+       mips_fetch_registers, mips_store_registers, mips_fetch_word):
+       Update.
+       (mips_xfer_memory): When mask_address_p, mask MEMADDR down to just
+       32 bits.
+       (_initialize_remote_mips): Add ``set mask-address'' command.
+
+       * mips-tdep.c (_initialize_mips_tdep): Replace "set mask-address"
+       with "set mips mask-address".  Implement using
+       add_set_auto_boolean_cmd.
+       (struct gdbarch_tdep): Add default_mask_address_p.
+       (mips_mask_address_p, show_mask_address): New functions.
+       (mips_addr_bits_remove): Use mips_mask_address_p() to determine if
+       masking is needed.
+       (mips_gdbarch_init): Set default_mask_address_p to zero.
+       (mips_dump_tdep): Print value of mask_address_p.
+
+Tue Jul 11 18:32:40 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * printcmd.c (print_scalar_formatted): Move masking of 'a' address
+       from here.
+       (print_address_numeric): To here.
+       * TODO: Update.
+
+Tue Jul 11 17:50:31 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * symtab.c: Use paddr_nz() to print addresses.
+
+Tue Jul 11 12:52:31 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * value.h (read_register, read_signed_register): Change return
+       type to ULONGEST.
+       (read_signed_register, read_signed_register_pid): Declare.
+
+       * regcache.c (read_register, read_register_pid): Update.
+       (read_signed_register_pid, read_signed_register): New functions.
+       
+Mon Jul 10 18:06:18 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * mips-tdep.c (mips_push_arguments): Always align struct_addr on a
+       16 byte boundary. Align allocated argument space using
+       MIPS_STACK_ARGSIZE.  Reserve space on stack for the struct return
+       and floating-point registers.  Use fp_register_arg_p to determine
+       if float_argreg should be aligned.
+
+2000-07-10  Elena Zannoni  <ezannoni@kwikemart.cygnus.com>
+
+       * config/sh/tm-sh.h (STORE_RETURN_VALUE): Redefine as
+       sh_store_return_value().
+       * sh-tdep.c (sh_store_return_value): New function. Store the
+       value returned by a function into the appropriate register.
+
+2000-07-10  Elena Zannoni  <ezannoni@kwikemart.cygnus.com>
+
+        * sh-tdep.c (sh_skip_prologue): Before looking at the actual
+       instructions, try to see if the symbol table can be of help, by
+       calling after_prologue(). If this doesn't work, call
+       skip_prologue_hard_way().
+       (skip_prologue_hard_way): Renamed from sh_skip_prologue. Add some
+       more instruction pattern matching for pushing of arguments, and
+       manipulation of r14.
+       (after_prologue): New function. Use symbol table info to determine
+       the end of the prologue, if possible.
+
+2000-07-07  Michael Snyder  <msnyder@cleaver.cygnus.com>
+
+       * findvar.c (_initialize_findvar, build_findvar, write_fp, read_fp,
+       generic_target_write_fp, generic_target_read_fp, write_sp, read_sp,
+       generic_target_write_sp, generic_target_read_sp, write_pc, read_pc,
+       generic_target_write_pc, generic_target_read_pc, write_pc_pid, 
+       read_pc_pid, supply_register, write_register_pid, write_register,
+       read_register_pid, read_register, write_register_bytes, 
+       read_register_bytes, write_register_gen, read_register_gen, 
+       registers_fetched, registers_changed, find_saved_register, 
+       read_relative_register_raw_bytes, default_get_saved_register, 
+       read_relative_register_raw_bytes_for_frame, get_saved_register):
+       Move from this file into new file regcache.c.
+       (register_valid, registers_pid, registers): Ditto.
+       * regcache.c: New file to hold the register cache.
+       (register_cached): New function to read register_valid array.
+       * value.h (register_cached): Declare.
+       * defs.h (default_get_saved_register): Delete decl of static function.
+       * Makefile.in: Add regcache module.
+       
+Mon Jul 10 15:02:35 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       From 2000-07-05 Pierre Muller <muller@ics.u-strasbg.fr>:
+       * p-typeprint.c (pascal_type_print_method_args): Add braces around
+       isdigit after while keyword.
+
+2000-07-06  Elena Zannoni  <ezannoni@kwikemart.cygnus.com>
+
+        * TODO: Remove readline 4.1 import item.
+
+2000-07-09  Nick Duffek  <nsd@redhat.com>
+
+       * gdbtypes.c (is_ancestor): Infer type equivalence from name
+       equivalence.
+       (rank_one_type): Use strcmp instead of == to compare type names.
+       Don't swap parm with arg when checking TYPE_CODE_REF types.
+       * valops.c (find_overload_match): Fix indentation.  Compare
+       parameter rankings to 0..9, 10..99, and 100+ instead of 0, 10,
+       and 100.
+
+2000-07-07  David Edelsohn  <edelsohn@gnu.org>
+
+       * xcoffread.c (read_symbol_nvalue): Return CORE_ADDR.
+       * rs6000-tdep.c (rs6000_pop_frame): Make addr CORE_ADDR type.
+
+Fri Jul  7 18:29:51 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * config/mips/tm-mips.h (IEEE_FLOAT, SKIP_PROLOGUE,
+       SAVED_PC_AFTER_CALL, DECR_PC_AFTER_BREAK, BREAKPOINT_FROM_PC,
+       INNER_THAN): Macros.
+
+       * mips-tdep.c (mips_in_lenient_prologue): Delete function.
+       (mips32_skip_prologue, mips16_skip_prologue, mips_skip_prologue):
+       Remove ``lenient'' argument.
+       (mips_saved_pc_after_call): New function.
+       (mips_gdbarch_init): Initialize gdbarch members inner_than,
+       breakpoint_from_pc, decr_pc_after_break, ieee_float,
+       skip_prologue, saved_pc_after_call.
+
+2000-07-07  Mark Kettenis  <kettenis@gnu.org>
+
+       * config/i386/tm-linux.h: Add longjmp support.
+       (JB_ELEMENT_SIZE, JB_PC): New defines.
+       (GET_LONGJMP_TARGET): Define.
+       (get_longjmp_target): Add prototype.
+
+       * breakpoint.c (bpstat_what): Keep returning
+       BPSTAT_WHAT_SET_LONGJMP_RESUME when hitting multiple longjmp()
+       breakpoints instead of signalling an error by returning
+       BPSTAT_WHAT_STOP_NOISY.
+
+2000-07-06  Michael Snyder  <msnyder@cleaver.cygnus.com>
+
+       * mips-tdep.c: Replace '16' with bfd_mach_mips16 where appropriate.
+
+2000-07-06  Christopher Faylor  <cgf@cygnus.com>
+
+       * infcmd.c (attach_command): Move "stop_soon_quietly" setting
+       inside ATTACH_NO_WAIT conditional since we are not about to
+       stop soon if we're not calling wait_for_inferior.
+
+Wed Jul  5 21:06:39 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * config/i386/fbsd.mh (NATDEPFILES): Keep NATDEPFILES to a single
+       line.  configure.in assumes this.
+
+Wed Jul  5 20:48:22 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * configure.in (SER_HARDWIRE): When go32 or DJGPP, set to
+       ser-go32.c.
+       * configure: Re-generate.
+       
+Wed Jul  5 20:28:32 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * top.h (command_loop_marker), top.c (command_loop_marker):
+       Delete.
+       * event-top.c (command_handler), top.c (simplified_command_loop,
+       command_loop): Use null_cleanup instead of command_loop_marker.
+
+Wed Jul  5 20:09:41 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * event-loop.c: Include either <poll.h> or <sys/poll.h>.
+
+       * configure.in (targ_archs): Check for <poll.h> and <sys/poll.h>.
+       * configure, config.in: Re-generate.
+       
+Wed Jul  5 18:10:44 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       From 2000-06-12 Bill Nottingham <notting@redhat.com>:
+       * Makefile.in: add $(infodir) to FLAGS_TO_PASS
+       
+Wed Jul  5 18:03:55 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * TODO: Updates.
+
+2000-07-05  Mark Kettenis  <kettenis@gnu.org>
+
+       * TODO: Update.
+
+2000-07-03  Chris Faylor  <cfg@cygnus.com>
+
+        Committed by Elena Zannoni <ezannoni@cygnus.com>
+       * sh-tdep.c (sh_skip_prologue): Change prologue matching for modern
+       compilers.
+       (sh_frame_find_saved_regs): Ditto.
+       (sh_find_callers_reg): Stop if pc is zero.
+
+Sat Jul  1 17:47:08 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * ser-unix.c (do_unix_readchar): Revert Tue Mar 28 18:19:50 2000
+       Andrew Cagney <cagney@b1.cygnus.com>.  Locks up when no data is
+       pending.
+
+Sat Jul  1 15:40:14 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * Makefile.in (SER_HARDWIRE): Restore code to set it by configure.
+
+2000-06-26  Kevin Buettner  <kevinb@redhat.com>
+
+       * copying.awk: Eliminate use of PARAMS from this file.
+
+Fri Jun 23 20:47:03 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * mips-tdep.c (mips_push_arguments): Use the variable stack_used_p
+       to determine if any arguments were written to the stack.  Do not
+       rely on NUMARG>=8.
+
+Mon Jun 19 11:29:35 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * command.h (add_set_auto_boolean_cmd): Add declaration.
+       (enum var_types): Add var_auto_boolean.
+
+       * command.c (add_set_auto_boolean_cmd): New function.
+       (do_setshow_command): Recognize auto_boolean.
+       (parse_binary_operation): Recognize enable and disable.
+       (parse_auto_binary_operation): Parse auto binary variables.
+
+       * TODO: Update
+
+Fri Jun 23 16:20:21 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * mips-tdep.c (fp_register_arg_p): New function.
+       (mips_push_arguments): Use.  Do not pass floating point arguments
+       on in an integer register.
+
+2000-06-21  Pierre Muller  <muller@ics.u-strasbg.fr>
+       * symfile.c (init_filename_language_table): add ".pas", ".p" and ".pp"
+       as pascal source file extensions.
+
+2000-06-19  J.T. Conklin  <jtc@redback.com>
+
+       * remote-nindy.c (nindy_fetch_word, nindy_store_word): Removed
+       (nindy_xfer_inferior_memory): Use dcache_xfer_memory() instead of
+       breaking transfer into chunks and using nindy_fetch_word() and
+       nindy_store_word().
+
+       * remote-bug.c (bug_xfer_memory): Use dcache_xfer_memory() instead
+       of breaking transfer into chunks and using gr_fetch_word() and
+       gr_store_word().
+
+       * remote.c (remote_fetch_word, remote_store_word): Removed.
+
+       * remote-utils.h (gr_fetch_word, gr_store_word): Removed.
+       * remote-utils.c (gr_fetch_word, gr_store_word): Removed.
+
+       * dcache.h (dcache_fetch, dcache_poke, dcache_poke_block): Removed.
+       * dcache.c (dcache_fetch, dcache_poke): Removed.
+
+2000-06-16  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * defs.h: define language_pascal in language enumeration.
+       * language.h: define _LANG_pascal macro.
+       * language.c: add language_pascal support in all language dependant
+   functions.
+
+Sun Jun 18 01:01:09 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * mips-tdep.c (mips_debug): New variable.
+       (_initialize_mips_tdep): Add command "set debug mips".
+       (mips_push_arguments): Add code to dump the argument list as it is
+       created.
+
+Sun Jun 18 00:27:15 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * mips-tdep.c (mips_push_arguments): For MIPS_EABI, squeeze a
+       strut containing a floating-point into an FP register.
+
+Sat Jun 17 16:00:56 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * remote-mips.c: Include <ctype.h>
+       (mips_receive_header): Write printable characters to gdb_stdtarg
+       instead of gdb_stdlog.  Only count non-printables as invalid.
+       (mips_syn_garbage): Reduce to 10.
+
+Sat Jun 17 15:39:28 2000  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * mips-tdep.c (mips_gdbarch_init): When the object file header
+       specifies EABI64, select EABI64 and not EABI32.
+
+2000-06-16  Nicholas Duffek  <nsd@redhat.com>
+
+       * rs6000-tdep.c: Changes throughout for multi-arch 64-bit
+       support.  Incorporate most of tm-rs6000.h.
+       (find_toc_address_hook): Rename to rs6000_find_toc_address_hook.
+       (rs6000_set_host_arch_hook): Declare.
+       (read_memory_addr): Define.
+       (pop_frame): Rename to rs6000_pop_frame.
+       (rs6000_pop_frame, rs6000_fix_call_dummy, rs6000_push_arguments,
+       rs6000_frame_saved_pc, rs6000_frame_chain): Remove non-generic
+       dummy frame handling.
+       (branch_dest, rs6000_pop_frame, rs6000_skip_trampoline_code,
+       rs6000_frame_saved_pc, frame_get_saved_regs,
+       frame_initial_stack_address, rs6000_frame_chain,
+       rs6000_convert_from_func_ptr_addr): Call read_memory_addr instead
+       of read_memory_integer.
+       (branch_dest, rs6000_pop_frame, rs6000_push_arguments,
+       rs6000_skip_trampoline_code, rs6000_frame_saved_pc,
+       frame_get_saved_regs, frame_initial_stack_address,
+       rs6000_frame_chain): Replace 4 with TDEP->wordsize.
+       (skip_prologue): Recognize some 64-bit stack adjustments.
+       (push_dummy_frame, pop_dummy_frame, set_processor,
+       show_processor): Delete.
+       (frame_get_saved_regs): Manipulate saved register addresses using
+       CORE_ADDR instead of int.
+       (rs6000_create_inferior): New function.
+       (register_names_*[]): Change to struct reg registers_*[].
+       (variants[]): Assimilate into multi-arch approach.
+       (register_names_*[], variants[]): Refer to pre-PowerPC
+       architectures as POWER instead of RS6000.
+       * rs6000-nat.c: Ubiquitous changes for 64-bit support.
+       (vmap_secs, xcoff_relocate_symtab): Cast addresses
+       to unsigned long to avoid sign-extension errors.
+       (set_host_arch): New function.
+       (xcoff_relocate_symtab): Try disabling usleep(36000) workaround.
+       (rs6000_core_fns): Use new bfd_target_xcoff_flavour.
+       (_initialize_core_rs6000): Initialize rs6000_set_host_arch_hook.
+       * symfile.c (find_sym_fns): Remove special xcoff kludge.
+       * xcoffread.c (secnum_to_bfd_section): Initialize args.objfile.
+       (process_linenos): Query line struct size from coff
+       backend instead of using compile-time constant.
+       (enter_line_range): Likewise.
+       (read_xcoff_symtab): Pass "XCOFF64" instead of "XCOFF" to
+       record_debugformat() if appropriate.
+       (process_xcoff_symbol): Access symbol addresses using
+       SYMBOL_VALUE_ADDRESS instead of SYMBOL_VALUE.
+       (read_symbol_lineno): Retrieve XCOFF64 symbol names from strtbl.
+       (scan_xcoff_symtab): Likewise.  Query syment struct size from
+       coff backend instead of using compile-time constant.
+       (xcoff_sym_fns): Set flavour to bfd_target_xcoff_flavour.
+       * Makefile.in (INTERNAL_LDFLAGS): Add $(MH_LDFLAGS) to list of flags
+       that this Makefile variable get set to.  (From Kevin Buettner.)
+       * config/powerpc/aix.mh (MH_LDFLAGS): Add linker flags so that
+       the TOC doesn't overflow.  (From Kevin Buettner.)
+       * config/powerpc/tm-ppc-aix.h: Move config decisions to
+       multi-arched rs6000-tdep.c.
+       * config/rs6000/tm-rs6000.h: Likewise.
+       (GDB_MULTI_ARCH): Define.
+       (skip_trampoline_code): Rename to rs6000_skip_trampoline_code.
+       (is_magic_function_pointer): Replace with
+       rs6000_convert_from_func_ptr_addr.
+       (TARGET_CREATE_INFERIOR_HOOK): Define.
+       (find_toc_address_hook): Rename to rs6000_find_toc_address_hook.
+       (rs6000_set_host_arch_hook): Declare.
+       * config/rs6000/nm-rs6000.h (CHILD_XFER_MEMORY): Define.
+
+2000-06-15  Kevin Buettner  <kevinb@redhat.com>
+
+       * v850ice.c: Eliminate use of PARAMS from this file.
+
+2000-06-15  Michael Snyder  <msnyder@cygnus.com>
+
+       * valops.c (value_cast): Break up long lines.
+       * utils.c: Fix comment typo.
+
+2000-06-14  Jim Blandy  <jimb@redhat.com>
+
+       * dwarf2read.c (dump_die): Use the proper printf format for
+       printing DW_UNSND values; they're longs now.
+
+       * dwarf2read.c (dump_die): We can read DW_FORM_data8 now, on
+       at least some platforms, so print it out too.
+
+2000-06-14  James E. Wilson  <wilson@bletchleypark.cygnus.com>
+
+       * dwarf2read.c (struct attribute): Change unsnd and snd field types
+       to long.
+       (read_8_bytes): Change return type to long.
+       (read_unsigned_leb128): Change return type to long.  Change type of
+       local result to long.  Cast argument of left shift to long.
+       (read_signed_leb128): Likewise.
+
+2000-06-14  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       Add support for Pascal language. Part 1: new files.
+       * p-exp.y, p-lang.c, p-lang.h, p-typeprint.c, p-valprint.c: New files.
+
+2000-06-13  Kevin Buettner  <kevinb@redhat.com>
+
+       * ser-ocd.c, symtab.c: Eliminate use of PARAMS from these files.
+
+Tue Jun 13 09:21:23 2000  Jeffrey A Law  (law@cygnus.com)
+
+       * configure.host (hppa*64*): Renamed from hppa2.0w per
+       gcc/binutils changes.
+       * configure.tgt: Similarly.
+
+2000-06-12  Bill Nottingham <notting@redhat.com>
+
+       Patch applied by Kevin Buettner <kevinb@redhat.com>:
+
+       * ia64-linux-nat.c, gdbserver/low-linux.c (u_offsets):  PT_CR_IFS
+       is deprecated.  Use PT_CFM instead.
+
+2000-06-12  Michael Snyder  <msnyder@cygnus.com>
+
+       * breakpoint.c (breakpoint_thread_match): Fix comment.
+
+2000-06-12  Fernando Nasser  <fnasser@cygnus.com>
+
+       * valops.c (value_assign): Adjust the length to take into
+       consideration that we are not starting from the beginning.
+
 2000-06-12  Elena Zannoni  <ezannoni@kwikemart.cygnus.com>
 
        * symfile.c (add_symbol_file_command): Properly reformat "else if"
@@ -265,7 +751,7 @@ Wed Jun  7 11:34:54 2000  Andrew Cagney  <cagney@b1.cygnus.com>
        (i386-tdep.o, sh3-rom.o, sh-tdep.o): Add arch-utils.h to
        dependency list.
 
-2000-06-06  Michael Snyder  <msnyder@seadog.cygnus.com>
+2000-06-06  Michael Snyder  <msnyder@cygnus.com>
 
        * configure.in: Enable autoconf to find curses.h on Solaris 2.8.
        * configure: Regenerate.
@@ -481,7 +967,7 @@ Tue May 30 13:31:57 2000  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * config/alpha/nm-fbsd.h (CANNOT_STEP_BREAKPOINT): Define.
 
-2000-06-01  Michael Snyder  <msnyder@seadog.cygnus.com>
+2000-06-01  Michael Snyder  <msnyder@cygnus.com>
 
        * sol-thread.c (rw_common): Circumstances (eg. a bug in Sun's 
        thread_db library) may cause this function to be called with an
@@ -671,7 +1157,7 @@ Mon May 29 15:41:10 2000  Andrew Cagney  <cagney@b1.cygnus.com>
        xcoffsolib.c, xmodem.h, z8k-tdep.c: Remove PARAMS from function
        declarations.
 
-2000-05-26  Michael Snyder  <msnyder@seadog.cygnus.com>
+2000-05-26  Michael Snyder  <msnyder@cygnus.com>
 
        * gregset.h: New file.  Typedefs for gdb_gregset_t and 
        gdb_fpregset_t, prototypes for supply_gregset and friends.
@@ -792,7 +1278,7 @@ Thu May 25 11:02:24 2000  Andrew Cagney  <cagney@b1.cygnus.com>
        * config/i386/fbsd.mh (NATDEPFILES): Remove i386b-nat.o.  Add
        core-regset.o i387-nat.o i386bsd-nat.o.
 
-2000-05-24  Michael Snyder  <msnyder@seadog.cygnus.com>
+2000-05-24  Michael Snyder  <msnyder@cygnus.com>
 
        * findvar.c (value_from_register): Factor code, simplify logic.
 
@@ -851,7 +1337,7 @@ Tue May 23 17:44:18 2000  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * TODO: Update.
 
-2000-05-17  Michael Snyder  <msnyder@seadog.cygnus.com>
+2000-05-17  Michael Snyder  <msnyder@cygnus.com>
 
        * config/sparc/tm-sun4sol2.h: Turn on multi-arch.
        * sparc-tdep.c (gdb_print_insn_sparc): Remove temp. multi-arch hack.
@@ -1123,7 +1609,7 @@ Mon May 15 11:23:23 2000  Andrew Cagney  <cagney@b1.cygnus.com>
        value.
        * mdebugread.c (START_PSYMTAB): Add paren to avoid x=x=x.
 
-2000-05-12  Michael Snyder  <msnyder@.cygnus.com>
+2000-05-12  Michael Snyder  <msnyder@cygnus.com>
 
        * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Define.
        
@@ -1200,7 +1686,7 @@ Thu May 11 13:24:52 2000  Andrew Cagney  <cagney@b1.cygnus.com>
         * elfread.c (record_minimal_symbol_and_info): Use the section 
        where the symbol lives to get the index, instead of guessing.
 
-2000-05-10  Michael Snyder  <msnyder@.cygnus.com>
+2000-05-10  Michael Snyder  <msnyder@cygnus.com>
 
        Make Sparc a Multi-Arch target.  Discard PARAMS macro (require ANSI).
        * sparc-tdep.c: include arch-utils.h.
@@ -1274,7 +1760,7 @@ Thu May 11 13:24:52 2000  Andrew Cagney  <cagney@b1.cygnus.com>
        avoid using deprecated REGISTER_NAMES macro.
        * Makefile.in: Let sparc-tdep.c depend on arch-utils.h.
 
-2000-05-08  Michael Snyder  <msnyder@.cygnus.com>
+2000-05-08  Michael Snyder  <msnyder@cygnus.com>
 
        * gdbarch.sh: Add FP0_REGNUM to list of multi-arched register numbers.
        * gdbarch.c, gdbarch.h: Regenerate.
@@ -1333,7 +1819,7 @@ Mon May  8 00:49:32 2000  Andrew Cagney  <cagney@b1.cygnus.com>
        * proc-utils.h (PROCFS_NOTE, PROC_PRETTYFPRINT_STATUS): Always
        define.
 
-2000-05-05  Michael Snyder  <msnyder@.cygnus.com>
+2000-05-05  Michael Snyder  <msnyder@cygnus.com>
 
        * procfs.c: Cleanup of procfs tracing.  Move defines and 
        prototypes to proc-utils.h
@@ -1353,7 +1839,7 @@ Mon May  8 00:49:32 2000  Andrew Cagney  <cagney@b1.cygnus.com>
         used must be the index of the section where 'sym' resides,
         not .text.
 
-2000-05-05  Michael Snyder  <msnyder@.cygnus.com>
+2000-05-05  Michael Snyder  <msnyder@cygnus.com>
 
        * procfs.c (many functions): change int cmd; to long cmd;
        Solaris /proc API calls this parameter a long, and requires it
@@ -1408,7 +1894,7 @@ Thu May  4 20:54:00 2000  Andrew Cagney  <cagney@b1.cygnus.com>
        (MIPS_NUM_ARG_REGS), config/mips/tm-mips.h (MIPS_NUM_FP_ARG_REGS):
        Delete unused macros.
 
-2000-05-03  Michael Snyder  <msnyder@.cygnus.com>
+2000-05-03  Michael Snyder  <msnyder@cygnus.com>
 
        * solib.c (elf_locate_base, info_sharedlibrary_command):
        Look at the bfd to determine if it is elf32 or elf64, rather
@@ -1943,8 +2429,7 @@ Mon Apr 17 11:26:01 2000  Andrew Cagney  <cagney@b1.cygnus.com>
        config/h8300/tm-h8300.h, config/i386/tm-i386.h,
        config/i960/tm-i960.h, config/m88k/tm-m88k.h,
        config/mips/tm-mips.h, config/pa/tm-hppa.h,
-       config/sparc/tm-sparc.h, config/delta/tm-delta.h,
-       config/frv/tm-frv.h (IEEE_FLOAT): For all ports that #define
+       config/sparc/tm-sparc.h (IEEE_FLOAT): For all ports that #define
        IEEE_FLOAT, make sure they give it the value (1).
 
        Provide the hooks needed to support architectures on which
This page took 0.05664 seconds and 4 git commands to generate.