diff options
author | Fred Fish <fnf@specifix.com> | 1992-01-01 12:32:19 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-01-01 12:32:19 +0000 |
commit | 1d4c28c5fadff5eebe66a4a64c6b480aa3a020d5 (patch) | |
tree | 0a65e0c90e951b872726eac9b9ad9d34255bd172 /gdb | |
parent | 748ec1244c455ecfa7462a2f0d5b819e430a1ded (diff) | |
download | gdb-1d4c28c5fadff5eebe66a4a64c6b480aa3a020d5.zip gdb-1d4c28c5fadff5eebe66a4a64c6b480aa3a020d5.tar.gz gdb-1d4c28c5fadff5eebe66a4a64c6b480aa3a020d5.tar.bz2 |
Makefile.in: Change tm-svr4.h to tm-sysv4.h. Change xm-svr4.h
to xm-sysv4.h. Split OPCODE_DIR into OPCODE_DIR1 and OPCODE_DIR2
to reflect actual locations of opcode files, so TAGS target will
be buildable.
i386-tdep.c: Change an erroneous 'm68k' reference to 'i386'.
i386-tdep.c (supply_fpregset, fill_fpregset): Remove m68k code.
m68k-tdep.c (supply_fpregset, fill_fpregset): Fix array
dereferencing to access the correct elements.
valops.c (value_addr): Declare return type of external func value_copy().
xcoffread.c: Undefine next_symbol_text before redefining it.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 20 | ||||
-rw-r--r-- | gdb/xcoffread.c | 1 |
2 files changed, 21 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7a347ab..c4302dc 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,23 @@ +Wed Jan 1 04:29:00 1992 Fred Fish (fnf at cygnus.com) + + * Makefile.in: Change tm-svr4.h to tm-sysv4.h. Change xm-svr4.h + to xm-sysv4.h. Split OPCODE_DIR into OPCODE_DIR1 and OPCODE_DIR2 + to reflect actual locations of opcode files, so TAGS target will + be buildable. + + * i386-tdep.c: Change an erroneous 'm68k' reference to 'i386'. + + * i386-tdep.c (supply_fpregset, fill_fpregset): Remove m68k + code. + + * m68k-tdep.c (supply_fpregset, fill_fpregset): Fix array + dereferencing to access the correct elements. + + * valops.c (value_addr): Declare return type of external func + value_copy(). + + * xcoffread.c: Undefine next_symbol_text before redefining it. + Mon Dec 30 10:57:02 1991 Per Bothner (bothner at cygnus.com) Mainly stuff to improve handling of TYPE_CODE_REF values. diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index e425ef7..43de5db 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -1209,6 +1209,7 @@ dump_misc_funcs () /* So far, I haven't seen this happenning xlc output. I doubt we'll need this for aixcoff. */ +#undef next_symbol_text #define next_symbol_text() \ printf ("Gdb Error: symbol names on multiple lines not implemented.\n") |