Lines Matching defs:if_stack
30 struct if_stack
32 struct if_stack *next;
2093 if_stack; this is so that the error message for missing #endif's
2099 struct if_stack *ifs = buffer->if_stack;
2126 /* Handle a #elif, #elifdef or #elifndef directive by not changing if_stack
2132 struct if_stack *ifs = buffer->if_stack;
2239 struct if_stack *ifs = buffer->if_stack;
2256 buffer->if_stack = ifs->next;
2262 /* Push an if_stack entry for a preprocessor conditional, and set
2270 struct if_stack *ifs;
2273 ifs = XOBNEW (&pfile->buffer_ob, struct if_stack);
2275 ifs->next = buffer->if_stack;
2286 buffer->if_stack = ifs;
2753 /* Clears, amongst other things, if_stack and mi_cmacro. */
2774 struct if_stack *ifs;
2779 for (ifs = buffer->if_stack; ifs; ifs = ifs->next)