diff options
author | Doug Evans <dje@google.com> | 2013-01-23 20:07:39 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2013-01-23 20:07:39 +0000 |
commit | b1ae631a1eef7fed67ac11105007887e23f855f7 (patch) | |
tree | 2ce1394fe0e44038b3755253c91072ab4c67a604 /gdb | |
parent | 55a784010272d22fa1ebbc75a946fa49e4e5d78b (diff) | |
download | gdb-b1ae631a1eef7fed67ac11105007887e23f855f7.zip gdb-b1ae631a1eef7fed67ac11105007887e23f855f7.tar.gz gdb-b1ae631a1eef7fed67ac11105007887e23f855f7.tar.bz2 |
* linespec.c (find_linespec_symbols): Make static.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/linespec.c | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b0f2b3f..00f7101 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2013-01-23 Doug Evans <dje@google.com> + + * linespec.c (find_linespec_symbols): Make static. + 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com> * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct diff --git a/gdb/linespec.c b/gdb/linespec.c index 70fc401..bc2415c 100644 --- a/gdb/linespec.c +++ b/gdb/linespec.c @@ -319,11 +319,11 @@ static VEC (symbolp) *find_label_symbols (struct linespec_state *self, VEC (symbolp) **label_funcs_ret, const char *name); -void find_linespec_symbols (struct linespec_state *self, - VEC (symtab_p) *file_symtabs, - const char *name, - VEC (symbolp) **symbols, - VEC (minsym_and_objfile_d) **minsyms); +static void find_linespec_symbols (struct linespec_state *self, + VEC (symtab_p) *file_symtabs, + const char *name, + VEC (symbolp) **symbols, + VEC (minsym_and_objfile_d) **minsyms); static struct line_offset linespec_parse_variable (struct linespec_state *self, @@ -2948,7 +2948,7 @@ find_function_symbols (struct linespec_state *state, /* Find all symbols named NAME in FILE_SYMTABS, returning debug symbols in SYMBOLS and minimal symbols in MINSYMS. */ -void +static void find_linespec_symbols (struct linespec_state *state, VEC (symtab_p) *file_symtabs, const char *name, |