Home | History | Annotate | Download | only in gas

Lines Matching defs:defsyms

61 /* We build a list of defsyms as we read the options, and then define
134 static struct defsym_list *defsyms;
813 n->next = defsyms;
816 defsyms = n;
1409 while (defsyms != NULL)
1414 sym = symbol_new (defsyms->name, absolute_section,
1415 &zero_address_frag, defsyms->value);
1422 next = defsyms->next;
1423 free (defsyms);
1424 defsyms = next;