From: Anton Kolesov Date: Wed, 5 Oct 2016 10:06:08 +0000 (+0300) Subject: arc: Remove annoying debug message X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ed2f09e183df513e9616c53cdace32cf8b824b98;p=binutils-gdb.git arc: Remove annoying debug message The logging message is called too often - once for each register when it's value has to be evaluated. This floods the screen for commands like "info register all", but doesn't give really any help at debugging GDB issues. Between increasing the debug level of this message and removing it altogether I think that removing it is preferable. gdb/ChangeLog: arc-tdep.c (arc_frame_prev_register): Remove annoying log message. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5ff5f2b65ce..357f6485058 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2016-10-05 Anton Kolesov + + arc-tdep.c (arc_frame_prev_register): Remove annoying log message. + 2016-10-05 Yao Qi * features/Makefile (WHICH): Add diff --git a/gdb/arc-tdep.c b/gdb/arc-tdep.c index 7bb93adb360..60a4e0442d4 100644 --- a/gdb/arc-tdep.c +++ b/gdb/arc-tdep.c @@ -876,9 +876,6 @@ static struct value * arc_frame_prev_register (struct frame_info *this_frame, void **this_cache, int regnum) { - if (arc_debug) - debug_printf ("arc: frame_prev_register (regnum = %d)\n", regnum); - if (*this_cache == NULL) *this_cache = arc_make_frame_cache (this_frame); struct arc_frame_cache *cache = (struct arc_frame_cache *) (*this_cache);