* solib-sunos.c (sunos_solib_create_inferior_hook): Use write_pc
authorUlrich Weigand <uweigand@de.ibm.com>
Fri, 15 Jun 2007 22:26:50 +0000 (22:26 +0000)
committerUlrich Weigand <uweigand@de.ibm.com>
Fri, 15 Jun 2007 22:26:50 +0000 (22:26 +0000)
instead of write_register (PC_REGNUM, ...).

gdb/ChangeLog
gdb/solib-sunos.c

index 3690ec9..766e969 100644 (file)
@@ -1,5 +1,11 @@
 2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
 
+       * solib-sunos.c (sunos_solib_create_inferior_hook): Use write_pc
+       instead of write_register (PC_REGNUM, ...).
+
+
+2007-06-15  Ulrich Weigand  <uweigand@de.ibm.com>
+
        * solib-sunos.c (sunos_solib_create_inferior_hook): Add comment
        explaining why the PC adjustment code is necessary.
 
index 0717607..ef6e411 100644 (file)
@@ -786,7 +786,7 @@ sunos_solib_create_inferior_hook (void)
   if (gdbarch_decr_pc_after_break (current_gdbarch))
     {
       stop_pc -= gdbarch_decr_pc_after_break (current_gdbarch);
-      write_register (PC_REGNUM, stop_pc);
+      write_pc (stop_pc);
     }
 
   if (!disable_break ())