* dbxread.c: reset function_start_offset after a finishing N_FUN
authorRon Unrau <runrau@cygnus>
Tue, 16 Jun 1998 20:38:10 +0000 (20:38 +0000)
committerRon Unrau <runrau@cygnus>
Tue, 16 Jun 1998 20:38:10 +0000 (20:38 +0000)
          is seen.
        * remote-sim.c: allow TARGET_REDEFINE_DEFAULT_OPS to override
          target vectors as needed.
* txvu-tdep.c: add support for VIF breakpoints.

gdb/ChangeLog
gdb/remote-sim.c

index 32d0820af6573a4a00b57e61881a9b7f928ab63b..3e32ff5bb83317d87f726a7580c16e5d39544f6e 100644 (file)
@@ -1,3 +1,10 @@
+Tue Jun 16 14:38:40 1998  Ron Unrau  (runrau@cygnus.com)
+
+       * dbxread.c: reset function_start_offset after a finishing N_FUN 
+         is seen.
+       * remote-sim.c: allow TARGET_REDEFINE_DEFAULT_OPS to override
+         target vectors as needed.
+
 Sun Jun 14 08:46:25 1998  Ron Unrau  (runrau@cygnus.com)
 
        * partial-stab.h: 'F' and 'f' type N_FUN psymbols should pass
index 853fd4025e7f6a82cb85dfdbdfbe80ebbe1e0a73..452c631fe42468973617d5a669394877bc0b0952 100644 (file)
@@ -958,12 +958,17 @@ static void init_gdbsim_ops(void)
   gdbsim_ops.to_sections =   NULL;     
   gdbsim_ops.to_sections_end =   NULL; 
   gdbsim_ops.to_magic =   OPS_MAGIC;   
+
+#ifdef TARGET_REDEFINE_DEFAULT_OPS
+  TARGET_REDEFINE_DEFAULT_OPS (&gdbsim_ops);
+#endif
 }
 
 void
 _initialize_remote_sim ()
 {
   init_gdbsim_ops() ;
+
   add_target (&gdbsim_ops);
 
   add_com ("sim <command>", class_obscure, simulator_command,
This page took 0.026773 seconds and 4 git commands to generate.