From: Nick Clifton Date: Sat, 17 May 2014 16:45:18 +0000 (+0100) Subject: Prevent the V850 assembler from generating an internal error if it is asked to X-Git-Tag: gdb-7.8-release~333 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=77f730a2f5cef30db27d251d9006284252903d24;p=external%2Fbinutils.git Prevent the V850 assembler from generating an internal error if it is asked to handle a ctoff() pseudo-op when running in RH850 ABI mode. PR gas/16946 * config/tc-v850.c (handle_ctoff): Generate an error if called when using the RH850 ABI. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index fa1d46b..5db5e37 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2014-05-17 Nick Clifton + + PR gas/16946 + * config/tc-v850.c (handle_ctoff): Generate an error if called + when using the RH850 ABI. + 2014-05-16 Kaushik Phata * config/tc-rl78.c (enum options): Add OPTION_32BIT_DOUBLES diff --git a/gas/config/tc-v850.c b/gas/config/tc-v850.c index d5b9d7a..91acec4 100644 --- a/gas/config/tc-v850.c +++ b/gas/config/tc-v850.c @@ -2029,6 +2029,12 @@ handle_lo16 (const struct v850_operand *operand, const char **errmsg) static bfd_reloc_code_real_type handle_ctoff (const struct v850_operand *operand, const char **errmsg) { + if (v850_target_arch == bfd_arch_v850_rh850) + { + *errmsg = _("ctoff() is not supported by the rh850 ABI. Use -mgcc-abi instead"); + return BFD_RELOC_64; /* Used to indicate an error condition. */ + } + if (operand == NULL) return BFD_RELOC_V850_CALLT_16_16_OFFSET;