]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* record.c (init_record_ops, init_record_core_ops): Actually
authorPedro Alves <palves@redhat.com>
Tue, 24 Nov 2009 01:47:51 +0000 (01:47 +0000)
committerPedro Alves <palves@redhat.com>
Tue, 24 Nov 2009 01:47:51 +0000 (01:47 +0000)
install record_stopped_data_address.

gdb/ChangeLog
gdb/record.c

index 19826cf1f09cffd0c3ea30e0e07cf5ab7e34db40..71a5bd4cb371ca1b917d1a19242563a4a93dcb84 100644 (file)
@@ -1,3 +1,8 @@
+2009-11-24  Pedro Alves  <pedro@codesourcery.com>
+
+       * record.c (init_record_ops, init_record_core_ops): Actually
+       install record_stopped_data_address.
+
 2009-11-23  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
 
        * dwarf2read.c [HAVE_MMAP] (MAP_FAILED): Define if missing.
index 00c7deaa823c29aa9aeafbb33db6b1b0cbea1e2d..85f969c8f6bd467f8ee5903ac25b190359e58d47 100644 (file)
@@ -1668,6 +1668,7 @@ init_record_ops (void)
   record_ops.to_insert_breakpoint = record_insert_breakpoint;
   record_ops.to_remove_breakpoint = record_remove_breakpoint;
   record_ops.to_stopped_by_watchpoint = record_stopped_by_watchpoint;
+  record_ops.to_stopped_data_address = record_stopped_data_address;
   record_ops.to_can_execute_reverse = record_can_execute_reverse;
   record_ops.to_stratum = record_stratum;
   /* Add bookmark target methods.  */
@@ -1876,6 +1877,7 @@ init_record_core_ops (void)
   record_core_ops.to_insert_breakpoint = record_core_insert_breakpoint;
   record_core_ops.to_remove_breakpoint = record_core_remove_breakpoint;
   record_core_ops.to_stopped_by_watchpoint = record_stopped_by_watchpoint;
+  record_core_ops.to_stopped_data_address = record_stopped_data_address;
   record_core_ops.to_can_execute_reverse = record_can_execute_reverse;
   record_core_ops.to_has_execution = record_core_has_execution;
   record_core_ops.to_stratum = record_stratum;