[binutils-gdb] x86: Remove duplicated I386_PCREL_TYPE_P/X86_64_PCREL_TYPE_P

H.J. Lu hjl@sourceware.org
Wed Jan 4 19:15:35 GMT 2023


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

commit 0ad0387c85fb38569731cb800e7832a0ba691b51
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Wed Jan 4 11:09:50 2023 -0800

    x86: Remove duplicated I386_PCREL_TYPE_P/X86_64_PCREL_TYPE_P
    
    I386_PCREL_TYPE_P and X86_64_PCREL_TYPE_P are defined twice.  Remove
    the duplications.
    
            * elfxx-x86.h (I386_PCREL_TYPE_P): Remove duplication.
            (X86_64_PCREL_TYPE_P): Likewise.

Diff:
---
 bfd/elfxx-x86.h | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/bfd/elfxx-x86.h b/bfd/elfxx-x86.h
index e3f83b600ef..3b4644ca478 100644
--- a/bfd/elfxx-x86.h
+++ b/bfd/elfxx-x86.h
@@ -97,13 +97,6 @@
 #define PLT_FDE_START_OFFSET	4 + PLT_CIE_LENGTH + 8
 #define PLT_FDE_LEN_OFFSET	4 + PLT_CIE_LENGTH + 12
 
-#define I386_PCREL_TYPE_P(TYPE) ((TYPE) == R_386_PC32)
-#define X86_64_PCREL_TYPE_P(TYPE) \
-  ((TYPE) == R_X86_64_PC8 \
-   || (TYPE) == R_X86_64_PC16 \
-   || (TYPE) == R_X86_64_PC32 \
-   || (TYPE) == R_X86_64_PC64)
-
 /* This must be the same as sframe_get_hdr_size (sfh).  For x86-64, this value
    is the same as sizeof (sframe_header) because there is no SFrame auxilliary
    header.  */


More information about the Binutils-cvs mailing list