| 951 | } *check_top; |
| 952 | |
| 953 | static void dep_stack_insert(struct dep_stack *stack, struct symbol *sym) |
| 954 | { |
| 955 | memset(stack, 0, sizeof(*stack)); |
| 956 | if (check_top) |
| 957 | check_top->next = stack; |
| 958 | stack->prev = check_top; |
| 959 | stack->sym = sym; |
| 960 | check_top = stack; |
| 961 | } |
| 962 | |
| 963 | static void dep_stack_remove(void) |
| 964 | { |
no outgoing calls
no test coverage detected