* readelf.c (frame_display_row): Output 's' for DW_CFA_same_value.

This commit is contained in:
DJ Delorie 2000-11-30 15:35:54 +00:00
parent 8c8998585a
commit 75066968bd
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2000-11-30 Richard Earnshaw <rearnsha@arm.com>
* readelf.c (frame_display_row): Output 's' for DW_CFA_same_value.
2000-11-28 Hans-Peter Nilsson <hp@bitrange.com>
* MAINTAINERS: Add Jörn Rennecke and self as SH maintainers.

View File

@ -6556,7 +6556,7 @@ frame_display_row (fc, need_col_headers, max_regs)
strcpy (tmp, "u");
break;
case DW_CFA_same_value:
strcpy (tmp, "u");
strcpy (tmp, "s");
break;
case DW_CFA_offset:
sprintf (tmp, "c%+d", fc->col_offset[r]);