summaryrefslogtreecommitdiff
path: root/gdb/buildsym.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-03-12 14:15:19 +0000
committerTom Tromey <tromey@redhat.com>2012-03-12 14:15:19 +0000
commit1827ba892b03be2f1e1836d711cdfe152c2d00b9 (patch)
tree20bb8d4a5e27e5b72873e44421cfb23d4a806ecd /gdb/buildsym.c
parent82a7a1cb1861638e5c70c1229e5b9b3ab949c892 (diff)
downloadgdb-1827ba892b03be2f1e1836d711cdfe152c2d00b9.tar.gz
* buildsym.c (record_pending_block): Now static.
* buildsym.h: (record_pending_block): Remove.
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r--gdb/buildsym.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c
index a7f141eb5dd..fb13162bb69 100644
--- a/gdb/buildsym.c
+++ b/gdb/buildsym.c
@@ -85,6 +85,10 @@ static int pending_addrmap_interesting;
static int compare_line_numbers (const void *ln1p, const void *ln2p);
+
+static void record_pending_block (struct objfile *objfile,
+ struct block *block,
+ struct pending_block *opblock);
/* Initial sizes of data structures. These are realloc'd larger if
@@ -400,7 +404,7 @@ finish_block (struct symbol *symbol, struct pending **listhead,
Allocate the pending block struct in the objfile_obstack to save
time. This wastes a little space. FIXME: Is it worth it? */
-void
+static void
record_pending_block (struct objfile *objfile, struct block *block,
struct pending_block *opblock)
{