2002-08-27 Elena Zannoni <ezannoni@redhat.com>
authorElena Zannoni <ezannoni@kwikemart.cygnus.com>
Tue, 27 Aug 2002 19:06:36 +0000 (19:06 +0000)
committerElena Zannoni <ezannoni@kwikemart.cygnus.com>
Tue, 27 Aug 2002 19:06:36 +0000 (19:06 +0000)
* cli/cli-script.h (copy_command_lines): Export.
* breakpoint.c: Include cli/cli-script.h.
* Makefile.in (breakpoint.o): Update dependencies.

gdb/ChangeLog
gdb/Makefile.in
gdb/breakpoint.c
gdb/cli/cli-script.h

index b32963902c6f6c8f6c4628e7b4f3421b22beb961..c8c16b5e218534b29ccbd6456074bc088559fa50 100644 (file)
@@ -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.
        PRSABORT and PRSTOP.
        This change will be needed by the Interix port.
 
+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
index eebf6c284ccf6db930fb18dc218dc438050c3237..9cf7eca2535cb25209c730cd555d41b63bdd1e28 100644 (file)
@@ -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) \
index 630536f42fb7aca3dbae1405e290b0183355fcdf..c52b4ba00322c2cac37f51b99b72d4478de6bf97 100644 (file)
@@ -45,6 +45,7 @@
 #include "completer.h"
 #include "gdb.h"
 #include "ui-out.h"
+#include "cli/cli-script.h"
 
 #include "gdb-events.h"
 
index f8604c6cb71cf7e53fb1c45b75c47117fd225c73..898e3cc04f848b94193cd5378724b64e9ccf21bb 100644 (file)
@@ -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);