gas/
* config/tc-avr.c (md_apply_fix): Fix handling of BFD_RELOC32.
This commit is contained in:
parent
f41f5e616a
commit
0b649256e3
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2012-04-17 Richard Sandiford <r.sandiford@uk.ibm.com>
|
||||
|
||||
* config/tc-avr.c (md_apply_fix): Fix handling of BFD_RELOC32.
|
||||
|
||||
2012-04-12 David S. Miller <davem@davemloft.net>
|
||||
|
||||
* config/tc-sparc.c (sparc_ip): Handle '=', "%h34", "%l34", and
|
||||
|
|
|
@ -1224,7 +1224,7 @@ md_apply_fix (fixS *fixP, valueT * valP, segT seg)
|
|||
break;
|
||||
|
||||
case BFD_RELOC_32:
|
||||
bfd_putl16 ((bfd_vma) value, where);
|
||||
bfd_putl32 ((bfd_vma) value, where);
|
||||
break;
|
||||
|
||||
case BFD_RELOC_16:
|
||||
|
|
Loading…
Reference in a new issue