Lines Matching defs:sym
31 struct symbol *sym = ep->name;
32 const char *name = show_ident(sym->ident);
34 if (sym->ctype.modifiers & MOD_STATIC)
49 static int output_data(struct symbol *sym)
51 printf("symbol %s:\n", show_ident(sym->ident));
52 printf("\ttype = %d\n", sym->ctype.base_type->type);
53 printf("\tmodif= %lx\n", sym->ctype.modifiers);
60 struct symbol *sym;
61 FOR_EACH_PTR(list, sym) {
63 expand_symbol(sym);
64 ep = linearize_symbol(sym);
70 output_data(sym);
72 END_FOR_EACH_PTR(sym);