mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-02 10:47:11 +08:00
gas/
2004-12-15 Jan Beulich <jbeulich@novell.com> * dw2gencfi.c (output_cfi_insn): Adjust DW_CFA_def_cfa_sf generation to emit a signed and factored offset. Adjust DW_CFA_def_cfa_offset_sf generation to emit a factored offset.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2004-12-15 Jan Beulich <jbeulich@novell.com>
|
||||||
|
|
||||||
|
* dw2gencfi.c (output_cfi_insn): Adjust DW_CFA_def_cfa_sf generation
|
||||||
|
to emit a signed and factored offset. Adjust DW_CFA_def_cfa_offset_sf
|
||||||
|
generation to emit a factored offset.
|
||||||
|
|
||||||
2004-12-10 Ian Lance Taylor <ian@wasabisystems.com>
|
2004-12-10 Ian Lance Taylor <ian@wasabisystems.com>
|
||||||
|
|
||||||
* config/tc-mips.c (macro) [M_LA_AB]: Give an error for a offset
|
* config/tc-mips.c (macro) [M_LA_AB]: Give an error for a offset
|
||||||
|
@ -728,7 +728,7 @@ output_cfi_insn (struct cfi_insn_data *insn)
|
|||||||
{
|
{
|
||||||
out_one (DW_CFA_def_cfa_sf);
|
out_one (DW_CFA_def_cfa_sf);
|
||||||
out_uleb128 (insn->u.ri.reg);
|
out_uleb128 (insn->u.ri.reg);
|
||||||
out_uleb128 (offset);
|
out_sleb128 (offset / DWARF2_CIE_DATA_ALIGNMENT);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -750,7 +750,7 @@ output_cfi_insn (struct cfi_insn_data *insn)
|
|||||||
if (offset < 0)
|
if (offset < 0)
|
||||||
{
|
{
|
||||||
out_one (DW_CFA_def_cfa_offset_sf);
|
out_one (DW_CFA_def_cfa_offset_sf);
|
||||||
out_sleb128 (offset);
|
out_sleb128 (offset / DWARF2_CIE_DATA_ALIGNMENT);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user