[binutils-gdb] x86: Update X86_64_GOT_TYPE_P to cover more GOT relocations

H.J. Lu hjl@sourceware.org
Thu Feb 3 19:53:18 GMT 2022


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=8d26ee1cd166b8565df17c82e7ecc9d35b5a367f

commit 8d26ee1cd166b8565df17c82e7ecc9d35b5a367f
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Thu Feb 3 11:48:16 2022 -0800

    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:
---
 bfd/elfxx-x86.h | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

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) \


More information about the Binutils-cvs mailing list