mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
CARP:
Rename REGISTER_NAMES{} -> REGISTER_NAME().
This commit is contained in:
@ -629,7 +629,11 @@ extern PTR xmrealloc PARAMS ((PTR, PTR, long));
|
||||
|
||||
extern int parse_escape PARAMS ((char **));
|
||||
|
||||
extern char *reg_names[];
|
||||
/* compat - handle old targets that just define REGISTER_NAMES */
|
||||
#ifndef REGISTER_NAME
|
||||
extern char *gdb_register_names[];
|
||||
#define REGISTER_NAME(i) gdb_register_names[i]
|
||||
#endif
|
||||
|
||||
/* Message to be printed before the error message, when an error occurs. */
|
||||
|
||||
|
Reference in New Issue
Block a user