diff options
author | Stu Grossman <grossman@cygnus> | 1993-11-17 01:38:11 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1993-11-17 01:38:11 +0000 |
commit | 069e056621c2b19165c7703d2c7a053ca4447d1e (patch) | |
tree | 5643c226b74e381b253197fea2dc317ba108c440 | |
parent | 343c1a964109a703b6f53d081d61fde6d91eddb5 (diff) | |
download | gdb-069e056621c2b19165c7703d2c7a053ca4447d1e.zip gdb-069e056621c2b19165c7703d2c7a053ca4447d1e.tar.gz gdb-069e056621c2b19165c7703d2c7a053ca4447d1e.tar.bz2 |
* i386ly-nat.c, i386lynx-nat.c, m68kly-nat.c: Remove. Move
common code into lynx-nat.c.
* lynx-nat.c: New module. Contains portable code for Lynx native
stuff (mostly ptrace related).
* config/i386/i386lynx.mh (NATDEPFILES): i386ly-nat.o -> lynx-nat.o
* config/m68k/m68klynx.mh (NATDEPFILES): i386ly-nat.o -> lynx-nat.o
* config/nm-lynx.h, config/tm-lynx.h: New files to contain
non-architecture specific native and target defs.
* config/i386/nm-i386lynx.h, config/i386/tm-i386lynx.h,
config/m68k/nm-m68klynx.h, config/m68k/tm-m68klynx.h: Move all
(arch) portable stuff into ../{tm nm}-lynx.h.
-rw-r--r-- | gdb/.Sanitize | 3 | ||||
-rw-r--r-- | gdb/ChangeLog | 20 |
2 files changed, 21 insertions, 2 deletions
diff --git a/gdb/.Sanitize b/gdb/.Sanitize index 69157ac..36be89b 100644 --- a/gdb/.Sanitize +++ b/gdb/.Sanitize @@ -132,7 +132,6 @@ i386-tdep.c i386aix-nat.c i386b-nat.c i386ly-tdep.c -i386ly-nat.c i386m3-nat.c i386mach-nat.c i386v-nat.c @@ -151,6 +150,7 @@ isi-xdep.c kdb-start.c language.c language.h +lynx-nat.c m2-exp.y m2-lang.c m2-lang.h @@ -163,7 +163,6 @@ m68k-tdep.c m88k-nat.c m88k-pinsn.c m88k-tdep.c -m68kly-nat.c main.c maint.c mem-break.c diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 692ae31..cb88933 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,25 @@ +Tue Nov 16 17:15:03 1993 Stu Grossman (grossman at cygnus.com) + + * i386ly-nat.c, i386lynx-nat.c, m68kly-nat.c: Remove. Move + common code into lynx-nat.c. + * lynx-nat.c: New module. Contains portable code for Lynx native + stuff (mostly ptrace related). + * config/i386/i386lynx.mh (NATDEPFILES): i386ly-nat.o -> lynx-nat.o + * config/m68k/m68klynx.mh (NATDEPFILES): i386ly-nat.o -> lynx-nat.o + + * config/nm-lynx.h, config/tm-lynx.h: New files to contain + non-architecture specific native and target defs. + * config/i386/nm-i386lynx.h, config/i386/tm-i386lynx.h, + config/m68k/nm-m68klynx.h, config/m68k/tm-m68klynx.h: Move all + (arch) portable stuff into ../{tm nm}-lynx.h. + Tue Nov 16 13:33:47 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + * symtab.c (gdb_mangle_name): If we detect something as a + constructor because the field name equals the class name, the + physname is just the args, not the whole mangled name. Needed for + testsuite to work with GCC 2.4.5. + * a68v-nat.c: Replace with new version from Troy Rollo. The version I am replacing appears to be an old copy of sun3-nat.c. * dstread.c (dst_symfile_read): Replace sort_all_symtab_syms call |