summaryrefslogtreecommitdiff
path: root/gdb/mcore-rom.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/mcore-rom.c')
-rw-r--r--gdb/mcore-rom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/mcore-rom.c b/gdb/mcore-rom.c
index 339c64096d6..dcc2cfb26cf 100644
--- a/gdb/mcore-rom.c
+++ b/gdb/mcore-rom.c
@@ -102,7 +102,7 @@ picobug_dumpregs (void)
if (strchr (p, '-'))
{
/* got a range. either r0-r7, r8-r15 or ss0-ss4 */
- if (STREQN (p, "r0", 2) || STREQN (p, "r8", 2))
+ if (DEPRECATED_STREQN (p, "r0", 2) || DEPRECATED_STREQN (p, "r8", 2))
{
int rn = (p[1] == '0' ? 0 : 8);
int i = 0;
@@ -116,7 +116,7 @@ picobug_dumpregs (void)
i++;
}
}
- else if (STREQN (p, "ss", 2))
+ else if (DEPRECATED_STREQN (p, "ss", 2))
{
/* get the next five values, ignoring the first */
int rn;
@@ -145,7 +145,7 @@ picobug_dumpregs (void)
{
for (i = 0; i < NUM_REGS; i++)
{
- if (picobug_regnames[i] && STREQ (picobug_regnames[i], name))
+ if (picobug_regnames[i] && DEPRECATED_STREQ (picobug_regnames[i], name))
break;
}