* write.c (print_fixup): Print source location on first line. Show fx_r_type

and fx_addsy fields.
This commit is contained in:
Ken Raeburn 1994-09-29 23:00:45 +00:00
parent 12cf5d98c7
commit 9dc6c00f8d
2 changed files with 19 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Thu Sep 29 18:57:06 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
* write.c (print_fixup): Print source location on first line.
Show fx_r_type and fx_addsy fields.
Wed Sep 28 14:56:39 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
* configure.in: Set bfd_gas for all sparc targets in one place,

View File

@ -2354,7 +2354,7 @@ print_fixup (fixp)
fixS *fixp;
{
indent_level = 1;
fprintf (stderr, "fix");
fprintf (stderr, "fix %s:%d", fixp->fx_file, fixp->fx_line);
if (fixp->fx_pcrel)
fprintf (stderr, " pcrel");
if (fixp->fx_pcrel_adjust)
@ -2371,10 +2371,22 @@ print_fixup (fixp)
fprintf (stderr, " tcbit");
if (fixp->fx_done)
fprintf (stderr, " done");
fprintf (stderr, "\n %s:%d", fixp->fx_file, fixp->fx_line);
fprintf (stderr, "\n size=%d frag=%lx where=%ld addnumber=%lx",
fixp->fx_size, (long) fixp->fx_frag, fixp->fx_where,
(long) fixp->fx_addnumber);
#ifdef BFD_ASSEMBLER
fprintf (stderr, "\n %s (%d)", bfd_get_reloc_code_name (fixp->fx_r_type),
fixp->fx_r_type);
#else
fprintf (stderr, " r_type=%d", fixp->fx_r_type);
#endif
if (fixp->fx_addsy)
{
fprintf (stderr, "\n <");
print_symbol_value_1 (stderr, fixp->fx_addsy);
fprintf (stderr, ">");
}
fprintf (stderr, "\n");
}
/* end of write.c */