PR 1300
* config/tc-arm.c (md_apply_fix): Fix casts to match type in printf format.
This commit is contained in:
parent
590f19724d
commit
0359e808fd
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-12-27 James Troup <james@nocrew.org>
|
||||
|
||||
PR 1300
|
||||
* config/tc-arm.c (md_apply_fix): Fix casts to match type in
|
||||
printf format.
|
||||
|
||||
2005-12-27 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* Makefile.am: Run "make dep-am".
|
||||
|
|
|
@ -11747,8 +11747,9 @@ md_apply_fix (fixS * fixP,
|
|||
if (value & 3)
|
||||
as_bad_where (fixP->fx_file, fixP->fx_line,
|
||||
_("invalid offset, target not word aligned (0x%08lX)"),
|
||||
(((unsigned int) fixP->fx_frag->fr_address
|
||||
+ (unsigned int) fixP->fx_where) & ~3) + value);
|
||||
(((unsigned long) fixP->fx_frag->fr_address
|
||||
+ (unsigned long) fixP->fx_where) & ~3)
|
||||
+ (unsigned long) value);
|
||||
|
||||
if (value & ~0x3fc)
|
||||
as_bad_where (fixP->fx_file, fixP->fx_line,
|
||||
|
|
Loading…
Reference in a new issue