From: Joel Brobecker Date: Mon, 5 Nov 2007 18:09:18 +0000 (+0000) Subject: * breakpoint.h (set_breakpoint_sal): Remove declaration. X-Git-Tag: sid-snapshot-20071201~257 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=60b0bfbcb3d560c822f8b0a92d838a14a2c4f88d;p=thirdparty%2Fbinutils-gdb.git * breakpoint.h (set_breakpoint_sal): Remove declaration. * breakpoint.c (set_breakpoint_sal): Delete. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0f0cf3599f2..8011ab66600 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2007-11-05 Joel Brobecker + + * breakpoint.h (set_breakpoint_sal): Remove declaration. + * breakpoint.c (set_breakpoint_sal): Delete. + 2007-11-05 Joel Brobecker * buildsym.c (finish_block): Remove "#if 1"/"#endif" brackets. diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 8f2cbad9dcd..7d92964a271 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -6982,19 +6982,6 @@ catch_command_1 (char *arg, int tempflag, int from_tty) } } -/* Used by the gui, could be made a worker for other things. */ - -struct breakpoint * -set_breakpoint_sal (struct symtab_and_line sal) -{ - struct breakpoint *b; - b = set_raw_breakpoint (sal, bp_breakpoint); - set_breakpoint_count (breakpoint_count + 1); - b->number = breakpoint_count; - b->thread = -1; - return b; -} - static void catch_command (char *arg, int from_tty) { diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index 1e68a2a805d..c6e08f59919 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -848,8 +848,6 @@ extern int ep_is_catchpoint (struct breakpoint *); such as a library load or unload. */ extern int ep_is_shlib_catchpoint (struct breakpoint *); -extern struct breakpoint *set_breakpoint_sal (struct symtab_and_line); - /* Enable breakpoints and delete when hit. Called with ARG == NULL deletes all breakpoints. */ extern void delete_command (char *arg, int from_tty);