diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-01-17 01:05:06 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-01-17 01:05:06 +0000 |
commit | cf5b2f1b3af009aaa4b9af2dd5e70f4754c5da00 (patch) | |
tree | 8b994599f7cc7f029e63ae92af4ac1867728458a /gdb/stabsread.c | |
parent | d33b9831c7678a1e7a27b9f6195e59a095d28297 (diff) | |
download | gdb-cf5b2f1b3af009aaa4b9af2dd5e70f4754c5da00.zip gdb-cf5b2f1b3af009aaa4b9af2dd5e70f4754c5da00.tar.gz gdb-cf5b2f1b3af009aaa4b9af2dd5e70f4754c5da00.tar.bz2 |
2004-01-16 Andrew Cagney <cagney@redhat.com>
* symfile.c: Update copyright year.
(compare_symbols): Delete unused function.
* stabsread.c: Update copyright year.
(lrs_general_complaint): Delete unused function.
(ref_search_value): Ditto.
(get_substring): Delete declaration.
* sh64-tdep.c: Update copyright year.
(sh64_get_gdb_regnum): Delete unused function.
* dwarf2read.c (dwarf2_unsupported_at_frame_base_complaint):
Delete unused function.
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r-- | gdb/stabsread.c | 25 |
1 files changed, 4 insertions, 21 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c index d84d05e..0e615cb 100644 --- a/gdb/stabsread.c +++ b/gdb/stabsread.c @@ -1,7 +1,8 @@ /* Support routines for decoding "stabs" debugging information format. - Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, - 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 - Free Software Foundation, Inc. + + Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, + 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free + Software Foundation, Inc. This file is part of GDB. @@ -89,8 +90,6 @@ static void read_one_struct_field (struct field_info *, char **, char *, struct type *, struct objfile *); -static char *get_substring (char **, int); - static struct type *dbx_alloc_type (int[2], struct objfile *); static long read_huge_number (char **, int, int *); @@ -194,12 +193,6 @@ stabs_general_complaint (const char *arg1) complaint (&symfile_complaints, "%s", arg1); } -static void -lrs_general_complaint (const char *arg1) -{ - complaint (&symfile_complaints, "%s", arg1); -} - /* Make a list of forward references which haven't been defined. */ static struct type **undef_types; @@ -533,16 +526,6 @@ ref_search (int refnum) return ref_map[refnum].sym; } -/* Return value for the reference REFNUM. */ - -static CORE_ADDR -ref_search_value (int refnum) -{ - if (refnum < 0 || refnum > ref_count) - return 0; - return ref_map[refnum].value; -} - /* Parse a reference id in STRING and return the resulting reference number. Move STRING beyond the reference id. */ |