+2003-05-02 David Carlton <carlton@bactrian.org>
+
+ * minsyms.c: Delete declarations for lookup_minimal_symbol_linkage
+ and lookup_minimal_symbol_natural.
+ * linespec.c (decode_variable): Call
+ lookup_minimal_symbol_linkage_or_natural instead of
+ lookup_minimal_symbol.
+ (decode_dollar): Ditto.
+
2003-05-02 David Carlton <carlton@bactrian.org>
* config/djgpp/fnchange.lst: Add testsuite/gdb.c++/rtti files.
sym, NULL, sym_symtab);
/* If symbol was not found, look in minimal symbol tables. */
- msymbol = lookup_minimal_symbol (copy, NULL, NULL);
+ msymbol = lookup_minimal_symbol_linkage_or_natural (copy);
if (msymbol != NULL)
return minsym_found (funfirstline, msymbol);
sym, file_symtab, sym_symtab);
}
- msymbol = lookup_minimal_symbol (copy, NULL, NULL);
+ msymbol = lookup_minimal_symbol_linkage_or_natural (copy);
if (msymbol != NULL)
return minsym_found (funfirstline, msymbol);
static int msym_count;
-static struct minimal_symbol *lookup_minimal_symbol_linkage (const char *name,
- const char *sfile,
- struct objfile
- *objf);
-
-static struct minimal_symbol *lookup_minimal_symbol_natural (const char *name,
- const char *sfile,
- struct objfile
- *objf);
-
static struct minimal_symbol *lookup_minimal_symbol_aux (const char *name,
int linkage,
const char *sfile,