* dlltool.c (dtab): Remove empty function.
(process_duplicates): Remove calls to dtab().
This commit is contained in:
parent
475bf943d2
commit
27eed06bc2
2 changed files with 5 additions and 25 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-05-02 Ben Elliston <bje@au.ibm.com>
|
||||||
|
|
||||||
|
* dlltool.c (dtab): Remove empty function.
|
||||||
|
(process_duplicates): Remove calls to dtab().
|
||||||
|
|
||||||
2005-05-01 Maciej W. Rozycki <macro@linux-mips.org>
|
2005-05-01 Maciej W. Rozycki <macro@linux-mips.org>
|
||||||
|
|
||||||
* doc/binutils.texi (strip, objcopy): Clarify the description of
|
* doc/binutils.texi (strip, objcopy): Clarify the description of
|
||||||
|
|
|
@ -703,7 +703,6 @@ static void gen_lib_file (void);
|
||||||
static int pfunc (const void *, const void *);
|
static int pfunc (const void *, const void *);
|
||||||
static int nfunc (const void *, const void *);
|
static int nfunc (const void *, const void *);
|
||||||
static void remove_null_names (export_type **);
|
static void remove_null_names (export_type **);
|
||||||
static void dtab (export_type **);
|
|
||||||
static void process_duplicates (export_type **);
|
static void process_duplicates (export_type **);
|
||||||
static void fill_ordinals (export_type **);
|
static void fill_ordinals (export_type **);
|
||||||
static int alphafunc (const void *, const void *);
|
static int alphafunc (const void *, const void *);
|
||||||
|
@ -2856,27 +2855,6 @@ remove_null_names (export_type **ptr)
|
||||||
d_nfuncs = dst;
|
d_nfuncs = dst;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
dtab (export_type **ptr ATTRIBUTE_UNUSED)
|
|
||||||
{
|
|
||||||
#ifdef SACDEBUG
|
|
||||||
int i;
|
|
||||||
for (i = 0; i < d_nfuncs; i++)
|
|
||||||
{
|
|
||||||
if (ptr[i])
|
|
||||||
{
|
|
||||||
printf ("%d %s @ %d %s%s%s\n",
|
|
||||||
i, ptr[i]->name, ptr[i]->ordinal,
|
|
||||||
ptr[i]->noname ? "NONAME " : "",
|
|
||||||
ptr[i]->constant ? "CONSTANT" : "",
|
|
||||||
ptr[i]->data ? "DATA" : "");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
printf ("empty\n");
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
process_duplicates (export_type **d_export_vec)
|
process_duplicates (export_type **d_export_vec)
|
||||||
{
|
{
|
||||||
|
@ -2889,7 +2867,6 @@ process_duplicates (export_type **d_export_vec)
|
||||||
/* Remove duplicates. */
|
/* Remove duplicates. */
|
||||||
qsort (d_export_vec, d_nfuncs, sizeof (export_type *), nfunc);
|
qsort (d_export_vec, d_nfuncs, sizeof (export_type *), nfunc);
|
||||||
|
|
||||||
dtab (d_export_vec);
|
|
||||||
for (i = 0; i < d_nfuncs - 1; i++)
|
for (i = 0; i < d_nfuncs - 1; i++)
|
||||||
{
|
{
|
||||||
if (strcmp (d_export_vec[i]->name,
|
if (strcmp (d_export_vec[i]->name,
|
||||||
|
@ -2918,9 +2895,7 @@ process_duplicates (export_type **d_export_vec)
|
||||||
d_export_vec[i] = 0;
|
d_export_vec[i] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
dtab (d_export_vec);
|
|
||||||
remove_null_names (d_export_vec);
|
remove_null_names (d_export_vec);
|
||||||
dtab (d_export_vec);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue