aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorElena Zannoni <ezannoni@kwikemart.cygnus.com>2002-08-27 19:06:36 +0000
committerElena Zannoni <ezannoni@kwikemart.cygnus.com>2002-08-27 19:06:36 +0000
commite1507482f5e624c7fcc9d4365f75de6ae7d010e1 (patch)
tree91da6a738943037771cb0504aa3e689c482cbfdf /gdb
parentad5211bec58c208be9512e73da9cb1b982e8d4fe (diff)
downloadgdb-e1507482f5e624c7fcc9d4365f75de6ae7d010e1.zip
gdb-e1507482f5e624c7fcc9d4365f75de6ae7d010e1.tar.gz
gdb-e1507482f5e624c7fcc9d4365f75de6ae7d010e1.tar.bz2
2002-08-27 Elena Zannoni <ezannoni@redhat.com>
* cli/cli-script.h (copy_command_lines): Export. * breakpoint.c: Include cli/cli-script.h. * Makefile.in (breakpoint.o): Update dependencies.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog14
-rw-r--r--gdb/Makefile.in2
-rw-r--r--gdb/breakpoint.c1
-rw-r--r--gdb/cli/cli-script.h2
4 files changed, 18 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index b329639..c8c16b5 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2002-08-27 Elena Zannoni <ezannoni@redhat.com>
+
+ * cli/cli-script.h (copy_command_lines): Export.
+ * breakpoint.c: Include cli/cli-script.h.
+ * Makefile.in (breakpoint.o): Update dependencies.
+
2002-08-26 Joel Brobecker <brobecker@gnat.com>
* cli/cli-script.c (copy_command_lines): New function.
@@ -232,6 +238,14 @@
2002-08-22 Elena Zannoni <ezannoni@redhat.com>
+ * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
+ write_register wherever possible instead of manipulating the
+ register bytes directly.
+ Assign VALUE_CONTENTS to a variable and use that.
+ The GPR numbers are now dependent on the architecture.
+
+2002-08-22 Elena Zannoni <ezannoni@redhat.com>
+
* rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
ev_offset fields.
(skip_prologue): Add support for BookE/e500 instructions.
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index eebf6c2..9cf7eca 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -1537,7 +1537,7 @@ blockframe.o: blockframe.c $(defs_h) $(gdbcore_h) $(inferior_h) \
breakpoint.o: breakpoint.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
$(inferior_h) $(language_h) $(target_h) $(gdbthread_h) \
$(gdb_string_h) $(gdb_events_h) $(linespec_h) $(ui_out_h) \
- $(completer_h) $(gdb_h)
+ $(completer_h) $(gdb_h) $(cli_script_h)
buildsym.o: buildsym.c $(defs_h) $(bfd_h) $(gdb_obstack_h) $(symtab_h) \
$(symfile_h) $(objfiles_h) $(gdbtypes_h) $(complaints_h) \
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index 630536f..c52b4ba 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -45,6 +45,7 @@
#include "completer.h"
#include "gdb.h"
#include "ui-out.h"
+#include "cli/cli-script.h"
#include "gdb-events.h"
diff --git a/gdb/cli/cli-script.h b/gdb/cli/cli-script.h
index f8604c6..898e3cc 100644
--- a/gdb/cli/cli-script.h
+++ b/gdb/cli/cli-script.h
@@ -41,6 +41,8 @@ extern enum command_control_type
extern void print_command_lines (struct ui_out *,
struct command_line *, unsigned int);
+extern struct command_line * copy_command_lines (struct command_line *cmds);
+
/* Exported to gdb/infrun.c */
extern void execute_user_command (struct cmd_list_element *c, char *args);