aboutsummaryrefslogtreecommitdiff
path: root/gdb/xcoffread.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2022-05-18 10:12:41 -0600
committerTom Tromey <tromey@adacore.com>2022-06-02 09:04:45 -0600
commita7f779c12e6f166e279ce2e189aa009dabaccae7 (patch)
tree651c28e0f28b554791993e7c6ab4ecad1c321a6e /gdb/xcoffread.c
parent4748a9be449fddcd69e865bdc484519c30701e55 (diff)
downloadgdb-a7f779c12e6f166e279ce2e189aa009dabaccae7.zip
gdb-a7f779c12e6f166e279ce2e189aa009dabaccae7.tar.gz
gdb-a7f779c12e6f166e279ce2e189aa009dabaccae7.tar.bz2
ODR warnings for "struct coff_symbol"
"struct coff_symbol" is defined in multiple .c files, causing ODR warnings. This patch renames just the xcoffread.c type. Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=22395
Diffstat (limited to 'gdb/xcoffread.c')
-rw-r--r--gdb/xcoffread.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c
index 250bd9f..e520d7a 100644
--- a/gdb/xcoffread.c
+++ b/gdb/xcoffread.c
@@ -86,7 +86,7 @@ static enum language psymtab_language = language_unknown;
/* Simplified internal version of coff symbol table information. */
-struct coff_symbol
+struct xcoff_symbol
{
char *c_name;
int c_symnum; /* Symbol number of this entry. */
@@ -99,7 +99,7 @@ struct coff_symbol
/* Last function's saved coff symbol `cs'. */
-static struct coff_symbol fcn_cs_saved;
+static struct xcoff_symbol fcn_cs_saved;
static bfd *symfile_bfd;
@@ -208,7 +208,7 @@ static void scan_xcoff_symtab (minimal_symbol_reader &,
static const char *xcoff_next_symbol_text (struct objfile *);
-static void record_include_begin (struct coff_symbol *);
+static void record_include_begin (struct xcoff_symbol *);
static void
enter_line_range (struct subfile *, unsigned, unsigned,
@@ -230,7 +230,7 @@ static int read_symbol_lineno (int);
static CORE_ADDR read_symbol_nvalue (int);
-static struct symbol *process_xcoff_symbol (struct coff_symbol *,
+static struct symbol *process_xcoff_symbol (struct xcoff_symbol *,
struct objfile *);
static void read_xcoff_symtab (struct objfile *, legacy_psymtab *);
@@ -239,7 +239,7 @@ static void read_xcoff_symtab (struct objfile *, legacy_psymtab *);
static void add_stab_to_list (char *, struct pending_stabs **);
#endif
-static void record_include_end (struct coff_symbol *);
+static void record_include_end (struct xcoff_symbol *);
static void process_linenos (CORE_ADDR, CORE_ADDR);
@@ -512,7 +512,7 @@ static int inclDepth; /* nested include depth */
static void allocate_include_entry (void);
static void
-record_include_begin (struct coff_symbol *cs)
+record_include_begin (struct xcoff_symbol *cs)
{
if (inclDepth)
{
@@ -533,7 +533,7 @@ record_include_begin (struct coff_symbol *cs)
}
static void
-record_include_end (struct coff_symbol *cs)
+record_include_end (struct xcoff_symbol *cs)
{
InclTable *pTbl;
@@ -931,7 +931,7 @@ read_xcoff_symtab (struct objfile *objfile, legacy_psymtab *pst)
struct internal_syment symbol[1];
union internal_auxent main_aux;
- struct coff_symbol cs[1];
+ struct xcoff_symbol cs[1];
CORE_ADDR file_start_addr = 0;
CORE_ADDR file_end_addr = 0;
@@ -942,7 +942,7 @@ read_xcoff_symtab (struct objfile *objfile, legacy_psymtab *pst)
CORE_ADDR fcn_start_addr = 0;
enum language pst_symtab_language;
- struct coff_symbol fcn_stab_saved = { 0 };
+ struct xcoff_symbol fcn_stab_saved = { 0 };
/* fcn_cs_saved is global because process_xcoff_symbol needs it. */
union internal_auxent fcn_aux_saved = main_aux;
@@ -1457,7 +1457,7 @@ read_xcoff_symtab (struct objfile *objfile, legacy_psymtab *pst)
/* process one xcoff symbol. */
static struct symbol *
-process_xcoff_symbol (struct coff_symbol *cs, struct objfile *objfile)
+process_xcoff_symbol (struct xcoff_symbol *cs, struct objfile *objfile)
{
struct symbol onesymbol;
struct symbol *sym = &onesymbol;