public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] objcopy: avoid "shadowing" of remove() function name
@ 2022-09-30  8:54 Jan Beulich
  0 siblings, 0 replies; only message in thread
From: Jan Beulich @ 2022-09-30  8:54 UTC (permalink / raw)
  To: Binutils

remove() is a standard library function (declared in stdio.h), which
triggers a "shadows a global declaration" warning with some gcc versions.

--- a/binutils/objcopy.c
+++ b/binutils/objcopy.c
@@ -4091,7 +4091,7 @@ setup_section (bfd *ibfd, sec_ptr isecti
 	   && (flags & (SEC_ALLOC | SEC_GROUP)) != 0
 	   && !is_nondebug_keep_contents_section (ibfd, isection))
     {
-      flagword remove = SEC_HAS_CONTENTS | SEC_LOAD | SEC_GROUP;
+      flagword clr = SEC_HAS_CONTENTS | SEC_LOAD | SEC_GROUP;
 
       if (bfd_get_flavour (obfd) == bfd_target_elf_flavour)
 	{
@@ -4100,7 +4100,7 @@ setup_section (bfd *ibfd, sec_ptr isecti
 	     being used with GDB, if they were based upon files that
 	     originally contained groups.  */
 	  if (flags & SEC_GROUP)
-	    remove = SEC_LOAD;
+	    clr = SEC_LOAD;
 	  else
 	    make_nobits = true;
 
@@ -4108,9 +4108,9 @@ setup_section (bfd *ibfd, sec_ptr isecti
 	     elf.c:copy_private_bfd_data that section flags have not
 	     changed between input and output sections.  This hack
 	     prevents wholesale rewriting of the program headers.  */
-	  isection->flags &= ~remove;
+	  isection->flags &= ~clr;
 	}
-      flags &= ~remove;
+      flags &= ~clr;
     }
 
   osection = bfd_make_section_anyway_with_flags (obfd, name, flags);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-09-30  8:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-30  8:54 [PATCH] objcopy: avoid "shadowing" of remove() function name Jan Beulich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).