[PATCH] s390* subsy relocation error message.
Martin Schwidefsky
schwidefsky@de.ibm.com
Mon Jan 20 10:20:00 GMT 2003
More information about the Binutils mailing list
Mon Jan 20 10:20:00 GMT 2003
- Previous message (by thread): [PATCH] elfNN_bed canonicalization.
- Next message (by thread): [PATCH] New s390* relocations.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi, I stumbled the last time over the abort in md_apply_fix3 for s390 for the case that the fixup still has a subsy symbol. I replaced it with an error message. blue skies, Martin. 2003-01-20 Martin Schwidefsky <schwidefsky@de.ibm.com> * config/tc-s390.c (md_apply_fix3): Emit error message for relocations with a subsy symbol. diff -urN src/gas/config/tc-s390.c src-s390/gas/config/tc-s390.c --- src/gas/config/tc-s390.c Fri Jan 17 16:26:55 2003 +++ src-s390/gas/config/tc-s390.c Mon Jan 20 10:03:57 2003 @@ -1702,7 +1702,10 @@ where = fixP->fx_frag->fr_literal + fixP->fx_where; if (fixP->fx_subsy != NULL) - abort (); + as_bad_where (fixP->fx_file, fixP->fx_line, + "cannot emit relocation %s against subsy symbol %s", + bfd_get_reloc_code_name (fixP->fx_r_type), + S_GET_NAME (fixP->fx_subsy)); if (fixP->fx_addsy != NULL) {
- Previous message (by thread): [PATCH] elfNN_bed canonicalization.
- Next message (by thread): [PATCH] New s390* relocations.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list