mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 19:09:31 +08:00
* config/tc-hppa.c (md_apply_fix): Make "fmt" an int.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
Sun Oct 17 17:15:58 1999 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
|
* config/tc-hppa.c (md_apply_fix): Make "fmt" an int.
|
||||||
|
|
||||||
1999-10-12 Alan Modra <alan@spri.levels.unisa.edu.au>
|
1999-10-12 Alan Modra <alan@spri.levels.unisa.edu.au>
|
||||||
|
|
||||||
* config/tc-i386.c (i386_index_check): Correct #endif location.
|
* config/tc-i386.c (i386_index_check): Correct #endif location.
|
||||||
|
@ -4217,7 +4217,7 @@ md_apply_fix (fixP, valp)
|
|||||||
if (hppa_fixP)
|
if (hppa_fixP)
|
||||||
{
|
{
|
||||||
unsigned long buf_wd = bfd_get_32 (stdoutput, buf);
|
unsigned long buf_wd = bfd_get_32 (stdoutput, buf);
|
||||||
unsigned char fmt = bfd_hppa_insn2fmt (buf_wd);
|
int fmt = bfd_hppa_insn2fmt (buf_wd);
|
||||||
|
|
||||||
/* If there is a symbol associated with this fixup, then it's something
|
/* If there is a symbol associated with this fixup, then it's something
|
||||||
which will need a SOM relocation (except for some PC-relative relocs).
|
which will need a SOM relocation (except for some PC-relative relocs).
|
||||||
|
Reference in New Issue
Block a user