2003-05-20 Michal Ludvig <mludvig@suse.cz>

* readelf.c (display_debug_frames): Print both registers
	for DW_CFA_register.
This commit is contained in:
Michal Ludvig 2003-05-20 14:37:46 +00:00
parent 22d5e33918
commit 636fc38722
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-05-20 Michal Ludvig <mludvig@suse.cz>
* readelf.c (display_debug_frames): Print both registers
for DW_CFA_register.
2003-05-16 Kelley Cook <kelleycook@wideopenwest.com>
* configure.in: Accept i[3-7]86 variants. Escape '[]' for

View File

@ -9257,7 +9257,7 @@ display_debug_frames (section, start, file)
reg = LEB ();
roffs = LEB ();
if (! do_debug_frames_interp)
printf (" DW_CFA_register: r%ld\n", reg);
printf (" DW_CFA_register: r%ld in r%ld\n", reg, roffs);
fc->col_type[reg] = DW_CFA_register;
fc->col_offset[reg] = roffs;
break;