From: Nick Clifton Date: Fri, 31 Jan 2020 16:45:04 +0000 (+0000) Subject: Fix compile time build problem building the s390 assembler. X-Git-Tag: binutils-2_34~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7e1a4f55c428855343d25b43c083922f37ba7a98;p=thirdparty%2Fbinutils-gdb.git Fix compile time build problem building the s390 assembler. * config/tc-s390.c (s390_elf_suffix): Return ELF_SUFFIX_NONE rather than BFD_RELOC_NONE. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 6eb9cb3c96a..26f24547f75 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2020-01-31 Nick Clifton + + * config/tc-s390.c (s390_elf_suffix): Return ELF_SUFFIX_NONE + rather than BFD_RELOC_NONE. + 2020-01-31 Srinath Parvathaneni * config/tc-arm.c (fldmias): Moved inside "THUMB_VARIANT & arm_ext_v6t2" diff --git a/gas/config/tc-s390.c b/gas/config/tc-s390.c index ebd3e17d2e7..7f004d8f29c 100644 --- a/gas/config/tc-s390.c +++ b/gas/config/tc-s390.c @@ -896,7 +896,7 @@ s390_elf_suffix (char **str_p, expressionS *exp_p) return ptr->suffix; } - return BFD_RELOC_UNUSED; + return ELF_SUFFIX_NONE; } /* Structure used to hold a literal pool entry. */