From: Andrew Cagney Date: Mon, 9 Feb 2004 04:10:58 +0000 (+0000) Subject: 2004-02-08 Andrew Cagney X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6764ddad5af55fc8f87009d4af8d2afcc034cbd7;p=binutils-gdb.git 2004-02-08 Andrew Cagney * frame.c: Print both the register number and name. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 75e0806cbc7..909eb8d29ad 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2004-02-08 Andrew Cagney + * frame.c: Print both the register number and name. + * Makefile.in (init.c): Eliminate duplicates. Combine two greps and a sed into a single sed. Make .c and .o patterns more robust. (OBS): Delete. diff --git a/gdb/frame.c b/gdb/frame.c index 1c54f563a5c..072fcd89b30 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -509,9 +509,10 @@ frame_register_unwind (struct frame_info *frame, int regnum, if (frame_debug) { - fprintf_unfiltered (gdb_stdlog, - "{ frame_register_unwind (frame=%d,regnum=\"%s\",...) ", - frame->level, frame_map_regnum_to_name (frame, regnum)); + fprintf_unfiltered (gdb_stdlog, "\ +{ frame_register_unwind (frame=%d,regnum=%d(%s),...) ", + frame->level, regnum, + frame_map_regnum_to_name (frame, regnum)); } /* Require all but BUFFERP to be valid. A NULL BUFFERP indicates