From: H.J. Lu Date: Thu, 3 Feb 2022 19:48:16 +0000 (-0800) Subject: x86: Update X86_64_GOT_TYPE_P to cover more GOT relocations X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8d26ee1cd166b8565df17c82e7ecc9d35b5a367f;p=binutils-gdb.git x86: Update X86_64_GOT_TYPE_P to cover more GOT relocations Add R_X86_64_GOT32, R_X86_64_GOT64, R_X86_64_GOTPCREL64 and R_X86_64_GOTPLT64 to X86_64_GOT_TYPE_P to cover more GOT relocations. PR ld/28858 * elfxx-x86.h (X86_64_GOT_TYPE_P): Add R_X86_64_GOT32, R_X86_64_GOT64, R_X86_64_GOTPCREL64 and R_X86_64_GOTPLT64. --- diff --git a/bfd/elfxx-x86.h b/bfd/elfxx-x86.h index 4b5784ca08a..3219f363a9a 100644 --- a/bfd/elfxx-x86.h +++ b/bfd/elfxx-x86.h @@ -50,7 +50,11 @@ #define X86_64_GOT_TYPE_P(TYPE) \ ((TYPE) == R_X86_64_GOTPCREL \ || (TYPE) == R_X86_64_GOTPCRELX \ - || (TYPE) == R_X86_64_REX_GOTPCRELX) + || (TYPE) == R_X86_64_REX_GOTPCRELX \ + || (TYPE) == R_X86_64_GOT32 \ + || (TYPE) == R_X86_64_GOT64 \ + || (TYPE) == R_X86_64_GOTPCREL64 \ + || (TYPE) == R_X86_64_GOTPLT64) #define I386_GOT_TYPE_P(TYPE) \ ((TYPE) == R_386_GOT32 || (TYPE) == R_386_GOT32X) #define X86_GOT_TYPE_P(IS_X86_64, TYPE) \