mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-27 20:03:31 +08:00
* config/tc-mn10300.c (md_assemble): Anchor dwarf2 line info
before a relaxable insns.
This commit is contained in:
gas
@ -1,3 +1,8 @@
|
|||||||
|
2001-05-14 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
|
* config/tc-mn10300.c (md_assemble): Anchor dwarf2 line info
|
||||||
|
before a relaxable insns.
|
||||||
|
|
||||||
2001-05-13 Alexandre Oliva <aoliva@redhat.com>
|
2001-05-13 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
* config/tc-mn10300.c (tc_gen_reloc): Don't reject differences
|
* config/tc-mn10300.c (tc_gen_reloc): Don't reject differences
|
||||||
|
@ -1517,6 +1517,13 @@ keep_going:
|
|||||||
{
|
{
|
||||||
int type;
|
int type;
|
||||||
|
|
||||||
|
/* We want to anchor the line info to the previous frag (if
|
||||||
|
there isn't one, create it), so that, when the insn is
|
||||||
|
resized, we still get the right address for the beginning of
|
||||||
|
the region. */
|
||||||
|
f = frag_more (0);
|
||||||
|
dwarf2_emit_insn (0);
|
||||||
|
|
||||||
/* bCC */
|
/* bCC */
|
||||||
if (size == 2)
|
if (size == 2)
|
||||||
{
|
{
|
||||||
@ -1770,9 +1777,9 @@ keep_going:
|
|||||||
fixP->fx_offset += offset;
|
fixP->fx_offset += offset;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
dwarf2_emit_insn (size);
|
dwarf2_emit_insn (size);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* If while processing a fixup, a reloc really needs to be created
|
/* If while processing a fixup, a reloc really needs to be created
|
||||||
|
Reference in New Issue
Block a user