2004-07-23 Martin Hunt <hunt@redhat.com>
Kevin Buettner <kevinb@redhat.com> * dwarf2-frame.c (execute_cfa_program): Fix typo in which the alignment was being added to the offset instead of multiplied.
This commit is contained in:
parent
9f61903d73
commit
f6da8dd80e
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-07-23 Martin Hunt <hunt@redhat.com>
|
||||
Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* dwarf2-frame.c (execute_cfa_program): Fix typo in which the
|
||||
alignment was being added to the offset instead of multiplied.
|
||||
|
||||
2004-07-23 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Adjust for
|
||||
|
|
|
@ -426,7 +426,7 @@ bad CFI data; mismatched DW_CFA_restore_state at 0x%s", paddr (fs->pc));
|
|||
case DW_CFA_offset_extended_sf:
|
||||
insn_ptr = read_uleb128 (insn_ptr, insn_end, ®);
|
||||
insn_ptr = read_sleb128 (insn_ptr, insn_end, &offset);
|
||||
offset += fs->data_align;
|
||||
offset *= fs->data_align;
|
||||
dwarf2_frame_state_alloc_regs (&fs->regs, reg + 1);
|
||||
fs->regs.reg[reg].how = DWARF2_FRAME_REG_SAVED_OFFSET;
|
||||
fs->regs.reg[reg].loc.offset = offset;
|
||||
|
|
Loading…
Add table
Reference in a new issue