From: DJ Delorie Date: Thu, 30 Nov 2000 15:35:54 +0000 (+0000) Subject: * readelf.c (frame_display_row): Output 's' for DW_CFA_same_value. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=75066968bd16a72d9401f344f93a4dece368d098;p=binutils-gdb.git * readelf.c (frame_display_row): Output 's' for DW_CFA_same_value. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 0fa7e5d6810..8ec5ee39d17 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2000-11-30 Richard Earnshaw + + * readelf.c (frame_display_row): Output 's' for DW_CFA_same_value. + 2000-11-28 Hans-Peter Nilsson * MAINTAINERS: Add Jörn Rennecke and self as SH maintainers. diff --git a/binutils/readelf.c b/binutils/readelf.c index b0be961032c..99d1b9831dc 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -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]);