diff options
author | Don Lee <don.lee@sunplusct.com> | 2009-10-19 08:44:28 +0000 |
---|---|---|
committer | Don Lee <don.lee@sunplusct.com> | 2009-10-19 08:44:28 +0000 |
commit | 8dcb1aa7ca9439cfee66ec00a2343fbe5c35e37f (patch) | |
tree | 547fa35fb6d7ea8396e2b69d8131fc0aa2416287 | |
parent | cedb97b6d0491c7cae2cf559e8a6fc5f1c4aee33 (diff) | |
download | fsf-binutils-gdb-8dcb1aa7ca9439cfee66ec00a2343fbe5c35e37f.zip fsf-binutils-gdb-8dcb1aa7ca9439cfee66ec00a2343fbe5c35e37f.tar.gz fsf-binutils-gdb-8dcb1aa7ca9439cfee66ec00a2343fbe5c35e37f.tar.bz2 |
* gdb/score-tdep.c: Delete dead codes.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/score-tdep.c | 52 |
2 files changed, 4 insertions, 52 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9e624b6..1803dc5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2009-10-19 Don Lee <don.lee@sunplusct.com> + + * score-tdep.c: Delete dead codes. + 2009-10-15 Michael Snyder <msnyder@vmware.com> * record.c (struct record_reg_entry): Replace ptr with union diff --git a/gdb/score-tdep.c b/gdb/score-tdep.c index ccbcc3a..89fbeaf 100644 --- a/gdb/score-tdep.c +++ b/gdb/score-tdep.c @@ -56,58 +56,6 @@ struct score_frame_cache static int target_mach = bfd_mach_score7; -#if 0 -int -score_target_can_use_watch (int type, int cnt, int othertype) -{ - if (strcmp (current_target.to_shortname, "sim") == 0) - return soc_gh_can_use_watch (type, cnt); - return (*current_target.to_can_use_hw_breakpoint) (type, cnt, othertype); -} - -int -score_stopped_by_watch (void) -{ - if (strcmp (current_target.to_shortname, "sim") == 0) - return soc_gh_stopped_by_watch (); - return (*current_target.to_stopped_by_watchpoint) (); -} - -int -score_target_insert_watchpoint (CORE_ADDR addr, int len, int type) -{ - if (strcmp (current_target.to_shortname, "sim") == 0) - return soc_gh_add_watch (addr, len, type); - return (*current_target.to_insert_watchpoint) (addr, len, type); -} - -int -score_target_remove_watchpoint (CORE_ADDR addr, int len, int type) -{ - if (strcmp (current_target.to_shortname, "sim") == 0) - return soc_gh_del_watch (addr, len, type); - return (*current_target.to_remove_watchpoint) (addr, len, type); -} - -int -score_target_insert_hw_breakpoint (struct gdbarch *gdbarch, - struct bp_target_info * bp_tgt) -{ - if (strcmp (current_target.to_shortname, "sim") == 0) - return soc_gh_add_hardbp (bp_tgt->placed_address); - return (*current_target.to_insert_hw_breakpoint) (gdbarch, bp_tgt); -} - -int -score_target_remove_hw_breakpoint (struct gdbarch *gdbarch, - struct bp_target_info * bp_tgt) -{ - if (strcmp (current_target.to_shortname, "sim") == 0) - return soc_gh_del_hardbp (bp_tgt->placed_address); - return (*current_target.to_remove_hw_breakpoint) (gdbarch, bp_tgt); -} -#endif - static struct type * score_register_type (struct gdbarch *gdbarch, int regnum) { |