Rebase libiberty source with latest changes from gcc.

PR 25876
	PR demangler/94797
	* cp-demangle.c (cplus_demangle_operators): Add ss <=> operator.
	* testsuite/demangle-expected: Add operator<=> test.
This commit is contained in:
Nick Clifton
2020-04-28 11:56:06 +01:00
parent 32d1f47a12
commit 56b1e56d2c
8 changed files with 196 additions and 21 deletions

View File

@ -301,6 +301,9 @@ handle_lto_debug_sections (const char *name, int rename)
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;
}