diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index eb53b16..ae07be8 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2013-05-30 Paul Brook <paul@codesourcery.com> + + * config/tc-mips.c (md_apply_fix): Support BFD_RELOC_MIPS_EH. + 2013-05-29 Maciej W. Rozycki <macro@codesourcery.com> * write.c (resolve_reloc_expr_symbols): On REL targets don't diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 1f16dc9..02b3cf3 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -15824,6 +15824,7 @@ md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED) case BFD_RELOC_MICROMIPS_GOT_LO16: case BFD_RELOC_MICROMIPS_CALL_HI16: case BFD_RELOC_MICROMIPS_CALL_LO16: + case BFD_RELOC_MIPS_EH: if (fixP->fx_done) { offsetT value; |