gas/codeview: avoid "shadowing" of glibc function name
authorJan Beulich <jbeulich@suse.com>
Mon, 12 Dec 2022 08:49:44 +0000 (09:49 +0100)
committerJan Beulich <jbeulich@suse.com>
Mon, 12 Dec 2022 08:49:44 +0000 (09:49 +0100)
While not "index" this time, old enough glibc also has an (unguarded)
declaration of fileno() in stdio.h, which triggers a "shadows a global
declaration" warning with our choice of warning level and with at least
some gcc versions.

gas/codeview.c

index 13f1a3a3223d6b71872dbd2249324b83cf338218..15764028d73421d7b692de6d6a6369f024742a44 100644 (file)
@@ -452,7 +452,7 @@ void
 codeview_generate_asm_lineno (void)
 {
   const char *file;
-  unsigned int fileno;
+  unsigned int filenr;
   unsigned int lineno;
   struct line *l;
   symbolS *sym = NULL;
@@ -461,7 +461,7 @@ codeview_generate_asm_lineno (void)
 
   file = as_where (&lineno);
 
-  fileno = get_fileno (file);
+  filenr = get_fileno (file);
 
   if (!blocks_tail || blocks_tail->frag != frag_now)
     {
@@ -492,11 +492,11 @@ codeview_generate_asm_lineno (void)
       lb = blocks_tail;
     }
 
-  if (!lb->files_tail || lb->files_tail->fileno != fileno)
+  if (!lb->files_tail || lb->files_tail->fileno != filenr)
     {
       lf = xmalloc (sizeof (struct line_file));
       lf->next = NULL;
-      lf->fileno = fileno;
+      lf->fileno = filenr;
       lf->lines_head = lf->lines_tail = NULL;
       lf->num_lines = 0;