From dcb45a0623c00ed8928d92efa891e623fc41dfbe Mon Sep 17 00:00:00 2001 From: Jan Beulich Date: Thu, 16 Dec 2004 08:53:43 +0000 Subject: [PATCH] gas/ 2004-12-15 Jan Beulich * 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. --- gas/ChangeLog | 6 ++++++ gas/dw2gencfi.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index ec03c7a708..851e4d43ed 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2004-12-15 Jan Beulich + + * 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 * config/tc-mips.c (macro) [M_LA_AB]: Give an error for a offset diff --git a/gas/dw2gencfi.c b/gas/dw2gencfi.c index 3bfd14f46a..687815cf60 100644 --- a/gas/dw2gencfi.c +++ b/gas/dw2gencfi.c @@ -728,7 +728,7 @@ output_cfi_insn (struct cfi_insn_data *insn) { out_one (DW_CFA_def_cfa_sf); out_uleb128 (insn->u.ri.reg); - out_uleb128 (offset); + out_sleb128 (offset / DWARF2_CIE_DATA_ALIGNMENT); } else { @@ -750,7 +750,7 @@ output_cfi_insn (struct cfi_insn_data *insn) if (offset < 0) { out_one (DW_CFA_def_cfa_offset_sf); - out_sleb128 (offset); + out_sleb128 (offset / DWARF2_CIE_DATA_ALIGNMENT); } else { -- 2.34.1