X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=libiberty%2Fsimple-object.c;h=92f5698d0a6490bc1364812af61c1a402523eab9;hb=refs%2Fheads%2Fconcurrent-displaced-stepping-2020-04-01;hp=b00c265128c9dbca6984cea556af010df99f5427;hpb=07ffcfecac22d21774a110db0f65f0387c8f1102;p=deliverable%2Fbinutils-gdb.git diff --git a/libiberty/simple-object.c b/libiberty/simple-object.c index b00c265128..92f5698d0a 100644 --- a/libiberty/simple-object.c +++ b/libiberty/simple-object.c @@ -1,5 +1,5 @@ /* simple-object.c -- simple routines to read and write object files. - Copyright (C) 2010-2019 Free Software Foundation, Inc. + Copyright (C) 2010-2020 Free Software Foundation, Inc. Written by Ian Lance Taylor, Google. This program is free software; you can redistribute it and/or modify it @@ -293,11 +293,17 @@ handle_lto_debug_sections (const char *name, int rename) /* Copy over .note.GNU-stack section under the same name if present. */ else if (strcmp (name, ".note.GNU-stack") == 0) return strcpy (newname, name); + /* Copy over .note.gnu.property section under the same name if present. */ + else if (strcmp (name, ".note.gnu.property") == 0) + return strcpy (newname, name); /* Copy over .comment section under the same name if present. Solaris ld uses them to relax its checking of ELF gABI access rules for COMDAT sections in objects produced by GCC. */ else if (strcmp (name, ".comment") == 0) return strcpy (newname, name); + /* Copy over .GCC.command.line section under the same name if present. */ + else if (strcmp (name, ".GCC.command.line") == 0) + return strcpy (newname, name); free (newname); return NULL; }