(TARGET_FORMAT): Remove LynxOS COFF definition.
[deliverable/binutils-gdb.git] / gdb / mcore-rom.c
index cb77b19dc9e51ca3e2b14ae90114608656fdfec0..dcc2cfb26cf6f0923f254399e56e0033a84d2584 100644 (file)
@@ -25,6 +25,7 @@
 #include "monitor.h"
 #include "gdb_string.h"
 #include "regcache.h"
+#include "serial.h"
 
 /* Functions used only in this file. */
 
@@ -101,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;
@@ -115,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;
@@ -144,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;
                }
 
This page took 0.042598 seconds and 4 git commands to generate.