[patch] fix typo in dwarf2-frame.c

Martin M. Hunt hunt@redhat.com
Fri Jul 23 17:47:00 GMT 2004


Committed.

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.


Index: dwarf2-frame.c
===================================================================
RCS file: /cvs/src/src/gdb/dwarf2-frame.c,v
retrieving revision 1.36
diff -u -p -r1.36 dwarf2-frame.c
--- dwarf2-frame.c	15 Jun 2004 01:04:19 -0000	1.36
+++ dwarf2-frame.c	23 Jul 2004 17:45:10 -0000
@@ -426,7 +426,7 @@ bad CFI data; mismatched DW_CFA_restore_
 	    case DW_CFA_offset_extended_sf:
 	      insn_ptr = read_uleb128 (insn_ptr, insn_end, &reg);
 	      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;

-- 
Martin M. Hunt <hunt@redhat.com>
Red Hat Inc.



More information about the Gdb-patches mailing list