Home
last modified time | relevance | path

Searched refs:new_exclude (Results 1 – 2 of 2) sorted by relevance

/toolchain/binutils/binutils-2.25/binutils/
Ddlltool.c1536 struct string_list *new_exclude; in add_excludes() local
1538 new_exclude = ((struct string_list *) in add_excludes()
1540 new_exclude->string = (char *) xmalloc (strlen (exclude_string) + 2); in add_excludes()
1543 sprintf (new_exclude->string, "%s", exclude_string); in add_excludes()
1545 sprintf (new_exclude->string, "%s%s", (!leading_underscore ? "" : "_"), in add_excludes()
1547 new_exclude->next = excludes; in add_excludes()
1548 excludes = new_exclude; in add_excludes()
/toolchain/binutils/binutils-2.25/ld/
Dpe-dll.c507 struct exclude_list_struct *new_exclude; in pe_dll_add_excludes() local
509 new_exclude = xmalloc (sizeof (struct exclude_list_struct)); in pe_dll_add_excludes()
510 new_exclude->string = xmalloc (strlen (exclude_string) + 1); in pe_dll_add_excludes()
511 strcpy (new_exclude->string, exclude_string); in pe_dll_add_excludes()
512 new_exclude->type = type; in pe_dll_add_excludes()
513 new_exclude->next = excludes; in pe_dll_add_excludes()
514 excludes = new_exclude; in pe_dll_add_excludes()