aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2007-10-10 13:28:43 +0000
committerDaniel Jacobowitz <drow@false.org>2007-10-10 13:28:43 +0000
commitb4b61fdbdff81e5d1c3fc66476731951c6c23c6a (patch)
tree16e10ed25d1dacbbe8902e98c478d33ba5b1b060
parentcec9d2f362a9f1c13aad15caed66493463efb674 (diff)
downloadgdb-b4b61fdbdff81e5d1c3fc66476731951c6c23c6a.zip
gdb-b4b61fdbdff81e5d1c3fc66476731951c6c23c6a.tar.gz
gdb-b4b61fdbdff81e5d1c3fc66476731951c6c23c6a.tar.bz2
* target.c (update_current_target): Call setup_target_debug.
(push_target): Do not call it here.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/target.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8e913f8..48ab3ad 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-10 Daniel Jacobowitz <dan@codesourcery.com>
+
+ * target.c (update_current_target): Call setup_target_debug.
+ (push_target): Do not call it here.
+
2007-10-09 Michael Snyder <msnyder@specifix.com>
* MAINTAINERS: Update my email address.
diff --git a/gdb/target.c b/gdb/target.c
index c1b8f16..356df74 100644
--- a/gdb/target.c
+++ b/gdb/target.c
@@ -649,6 +649,9 @@ update_current_target (void)
"current_target". That way code looking for a non-inherited
target method can quickly and simply find it. */
current_target.beneath = target_stack;
+
+ if (targetdebug)
+ setup_target_debug ();
}
/* Mark OPS as a running target. This reverses the effect
@@ -752,9 +755,6 @@ push_target (struct target_ops *t)
update_current_target ();
- if (targetdebug)
- setup_target_debug ();
-
/* Not on top? */
return (t != target_stack);
}