mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 02:24:17 +08:00
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.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2016-10-05 Anton Kolesov <anton.kolesov@synopsys.com>
|
||||
|
||||
arc-tdep.c (arc_frame_prev_register): Remove annoying log message.
|
||||
|
||||
2016-10-05 Yao Qi <yao.qi@linaro.org>
|
||||
|
||||
* features/Makefile (WHICH): Add
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user