diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-05-08 22:26:10 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-05-08 22:26:10 +0000 |
commit | e6b55ae2e0d28cf4e89cc24dc710cc2af9a394f7 (patch) | |
tree | 44b7a4ae2581964ef6a940e15733065cdc7cdbef /gdb/target.c | |
parent | 1ac839b8ccd88fb376204225b0912678140653b5 (diff) | |
download | gdb-e6b55ae2e0d28cf4e89cc24dc710cc2af9a394f7.zip gdb-e6b55ae2e0d28cf4e89cc24dc710cc2af9a394f7.tar.gz gdb-e6b55ae2e0d28cf4e89cc24dc710cc2af9a394f7.tar.bz2 |
2004-05-08 Andrew Cagney <cagney@redhat.com>
* infrun.c (resume): Delete call to DO_DEFERRED_STORES.
* target.c (target_detach, target_disconnect): Ditto.
2004-05-08 Andrew Cagney <cagney@redhat.com>
* gdbint.texinfo (Target Architecture Definition): Delete
description of DO_DEFERRED_STORES.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/target.c b/gdb/target.c index 94a8f8a..b519866 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -1268,20 +1268,12 @@ target_preopen (int from_tty) void target_detach (char *args, int from_tty) { - /* Handle any optimized stores to the inferior. */ -#ifdef DO_DEFERRED_STORES - DO_DEFERRED_STORES; -#endif (current_target.to_detach) (args, from_tty); } void target_disconnect (char *args, int from_tty) { - /* Handle any optimized stores to the inferior. */ -#ifdef DO_DEFERRED_STORES - DO_DEFERRED_STORES; -#endif (current_target.to_disconnect) (args, from_tty); } |