OSDN Git Service

* breakpoint.c (insert_breakpoints, update_global_location_list):
authorpalves <palves>
Tue, 2 Sep 2008 15:14:52 +0000 (15:14 +0000)
committerpalves <palves>
Tue, 2 Sep 2008 15:14:52 +0000 (15:14 +0000)
Check breakpoints_always_inserted_mode instead of
always_inserted_mode directly.

gdb/ChangeLog
gdb/breakpoint.c

index 1461825..b9bd42a 100644 (file)
@@ -1,3 +1,9 @@
+2008-09-02  Pedro Alves  <pedro@codesourcery.com>
+
+       * breakpoint.c (insert_breakpoints, update_global_location_list):
+       Check breakpoints_always_inserted_mode instead of
+       always_inserted_mode directly.
+
 2008-09-02  Andreas Schwab  <schwab@suse.de>
 
        * ia64-tdep.c (ia64_get_dyn_info_list): Use obj_section_addr.
index 847de00..48f3384 100644 (file)
@@ -1285,7 +1285,7 @@ insert_breakpoints (void)
 
   update_global_location_list (1);
 
-  if (!always_inserted_mode && target_has_execution)
+  if (!breakpoints_always_inserted_mode () && target_has_execution)
     /* update_global_location_list does not insert breakpoints
        when always_inserted_mode is not enabled.  Explicitly
        insert them now.  */
@@ -7085,7 +7085,9 @@ update_global_location_list (int should_insert)
       check_duplicates (b);
     }
 
-  if (always_inserted_mode && should_insert && target_has_execution)
+  if (breakpoints_always_inserted_mode ()
+      && should_insert
+      && target_has_execution)
     insert_breakpoint_locations ();
 }