Home
last modified time | relevance | path

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

/illumos-gate/usr/src/tools/smatch/src/
H A Dpre-process.c79 if (stream->ifndef == stream->top_if) { \
1669 token->next = stream->top_if; in preprocessor_if()
1670 stream->top_if = token; in preprocessor_if()
1832 struct token *top_if = stream->top_if; in handle_elif() local
1835 if (!top_if) { in handle_elif()
1841 if (token_type(top_if) == TOKEN_ELSE) { in handle_elif()
1850 if (token_type(top_if) != TOKEN_IF) in handle_elif()
1858 token_type(top_if) = TOKEN_SKIP_GROUPS; in handle_elif()
1865 struct token *top_if = stream->top_if; in handle_else() local
1868 if (!top_if) { in handle_else()
[all …]
H A Dtoken.h62 struct token *top_if; member