* readelf.c (display_debug_frames): Use data factor for
DW_CFA_def_cfa_sf and DW_CFA_def_cfa_offset_sf.
This commit is contained in:
parent
e8be8da4fb
commit
ae67fcb5e7
@ -1,3 +1,8 @@
|
||||
2005-04-20 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* readelf.c (display_debug_frames): Use data factor for
|
||||
DW_CFA_def_cfa_sf and DW_CFA_def_cfa_offset_sf.
|
||||
|
||||
2005-04-19 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* objdump.c (dump_section_header): Skip linker created section.
|
||||
|
@ -10709,6 +10709,7 @@ display_debug_frames (Elf_Internal_Shdr *section,
|
||||
case DW_CFA_def_cfa_sf:
|
||||
fc->cfa_reg = LEB ();
|
||||
fc->cfa_offset = SLEB ();
|
||||
fc->cfa_offset = fc->cfa_offset * fc->data_factor;
|
||||
fc->cfa_exp = 0;
|
||||
if (! do_debug_frames_interp)
|
||||
printf (" DW_CFA_def_cfa_sf: r%d ofs %d\n",
|
||||
@ -10717,6 +10718,7 @@ display_debug_frames (Elf_Internal_Shdr *section,
|
||||
|
||||
case DW_CFA_def_cfa_offset_sf:
|
||||
fc->cfa_offset = SLEB ();
|
||||
fc->cfa_offset = fc->cfa_offset * fc->data_factor;
|
||||
if (! do_debug_frames_interp)
|
||||
printf (" DW_CFA_def_cfa_offset_sf: %d\n", fc->cfa_offset);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user