* mipsread.c (mylookup_symbol): Use strcmp, not STREQ, as we have
authorJim Kingdon <jkingdon@engr.sgi.com>
Thu, 15 Jul 1993 07:28:14 +0000 (07:28 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Thu, 15 Jul 1993 07:28:14 +0000 (07:28 +0000)
already checked the first characters.

gdb/mipsread.c

index 3a7a807..1477c7c 100644 (file)
@@ -2826,7 +2826,7 @@ mylookup_symbol (name, block, namespace, class)
       if (SYMBOL_NAME (sym)[0] == inc
          && SYMBOL_NAMESPACE (sym) == namespace
          && SYMBOL_CLASS (sym) == class
-         && STREQ (SYMBOL_NAME (sym), name))
+         && strcmp (SYMBOL_NAME (sym), name) == 0)
        return sym;
       bot++;
     }