diff options
author | Michael Snyder <msnyder@vmware.com> | 2000-03-30 18:54:28 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2000-03-30 18:54:28 +0000 |
commit | 57e687d9ad2a45b16a54b43edabcaa055a9244a6 (patch) | |
tree | 62173e842781b54e28c4139b69926076a63021de /gdb/ChangeLog | |
parent | 59233f88f1c34b39c2d61714fa144c8573583d55 (diff) | |
download | gdb-57e687d9ad2a45b16a54b43edabcaa055a9244a6.zip gdb-57e687d9ad2a45b16a54b43edabcaa055a9244a6.tar.gz gdb-57e687d9ad2a45b16a54b43edabcaa055a9244a6.tar.bz2 |
2000-03-30 Michael Snyder <msnyder@cleaver.cygnus.com>
* defs.h (struct continuation_arg): make 'data' a union, to avoid
casting problems when int and pointer are not the same size.
* event-top.c (command_handler): use data as a union.
(command_line_handler_continuation): ditto.
* infcmd.c (step_1_continuation): use data as a union. Re-indent.
(step_once): ditto. (finish_command_continuation): ditto.
(finish_command): ditto.
* breakpoint.c (until_break_command): use data as a union.
(until_break_command_continuation): ditto.
* utils.c (add_intermediate_continuation): fix typo in comment.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3dd1efa..d783c20 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,16 @@ +2000-03-30 Michael Snyder <msnyder@cleaver.cygnus.com> + + * defs.h (struct continuation_arg): make 'data' a union, to avoid + casting problems when int and pointer are not the same size. + * event-top.c (command_handler): use data as a union. + (command_line_handler_continuation): ditto. + * infcmd.c (step_1_continuation): use data as a union. Re-indent. + (step_once): ditto. (finish_command_continuation): ditto. + (finish_command): ditto. + * breakpoint.c (until_break_command): use data as a union. + (until_break_command_continuation): ditto. + * utils.c (add_intermediate_continuation): fix typo in comment. + Thu Mar 30 12:09:50 2000 Andrew Cagney <cagney@b1.cygnus.com> * gdbarch.h, gdbarch.c: Re-indent. Remove FIXMEs. |