diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-05-23 14:23:31 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-05-23 14:23:31 +0000 |
commit | b26a4dcbe3e5f0d370485b579fe895d5059abde2 (patch) | |
tree | 0545b1596ed529d70d98b4bfe75ac572d0c4b7a7 /gdb/target.c | |
parent | d23b6cb1cc430e21ca4f1018d48a4946ee4583d3 (diff) | |
download | binutils-gdb-b26a4dcbe3e5f0d370485b579fe895d5059abde2.tar.gz |
gdb/
Code cleanup.
* target.c (push_target): Return only void. Remove the return value
comment.
* target.h (push_target): Return only void.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gdb/target.c b/gdb/target.c index d60ef2a98fb..35a29b7480a 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -872,14 +872,11 @@ update_current_target (void) /* Push a new target type into the stack of the existing target accessors, possibly superseding some of the existing accessors. - Result is zero if the pushed target ended up on top of the stack, - nonzero if at least one target is on top of it. - Rather than allow an empty stack, we always have the dummy target at the bottom stratum, so we can call the function vectors without checking them. */ -int +void push_target (struct target_ops *t) { struct target_ops **cur; @@ -920,9 +917,6 @@ push_target (struct target_ops *t) (*cur) = t; update_current_target (); - - /* Not on top? */ - return (t != target_stack); } /* Remove a target_ops vector from the stack, wherever it may be. |