libiberty: sync with gcc again

This imports the following single commit from GCC as of r15-5586-g77f4b1097e6aec:
	961c50410926 Add LTO support

That change slipped in while I was preparing the previous just-pushed sync.
This commit is contained in:
Sam James 2024-11-22 15:47:23 +00:00
parent dad783716c
commit 461248c143
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2024-11-19 Evgeny Karpov <evgeny.karpov@microsoft.com>
* simple-object-coff.c: Add aarch64.
2024-11-16 Andrew Pinski <quic_apinski@quicinc.com>
* testsuite/test-demangle.c (get_line): Change K&R style

View File

@ -219,7 +219,9 @@ static const struct coff_magic_struct coff_magic[] =
/* i386. */
{ 0x14c, 0, F_EXEC | IMAGE_FILE_SYSTEM | IMAGE_FILE_DLL },
/* x86_64. */
{ 0x8664, 0, F_EXEC | IMAGE_FILE_SYSTEM | IMAGE_FILE_DLL }
{ 0x8664, 0, F_EXEC | IMAGE_FILE_SYSTEM | IMAGE_FILE_DLL },
/* AArch64. */
{ 0xaa64, 0, F_EXEC | IMAGE_FILE_SYSTEM | IMAGE_FILE_DLL }
};
/* See if we have a COFF file. */