marg             1537 dev/microcode/aic7xxx/aicasm_gram.y 	struct macro_arg *marg;
marg             1548 dev/microcode/aic7xxx/aicasm_gram.y 	marg = (struct macro_arg *)malloc(sizeof(*marg));
marg             1549 dev/microcode/aic7xxx/aicasm_gram.y 	if (marg == NULL) {
marg             1553 dev/microcode/aic7xxx/aicasm_gram.y 	marg->replacement_text = NULL;
marg             1562 dev/microcode/aic7xxx/aicasm_gram.y 	retval = regcomp(&marg->arg_regex, regex_pattern, REG_EXTENDED);
marg             1567 dev/microcode/aic7xxx/aicasm_gram.y 	TAILQ_INSERT_TAIL(&cur_symbol->info.macroinfo->args, marg, links);
marg              132 dev/microcode/aic7xxx/aicasm_macro_gram.y 	struct macro_arg *marg;
marg              145 dev/microcode/aic7xxx/aicasm_macro_gram.y 	TAILQ_FOREACH(marg, &macro_symbol->info.macroinfo->args, links) {
marg              150 dev/microcode/aic7xxx/aicasm_macro_gram.y 	if (marg == NULL) {
marg              154 dev/microcode/aic7xxx/aicasm_macro_gram.y 	marg->replacement_text = strdup(argtext);
marg              155 dev/microcode/aic7xxx/aicasm_macro_gram.y 	if (marg->replacement_text == NULL) {