From: Christopher Li <sparse@xxxxxxxxxxx> evaluate.c forgets to evaluate iterator_syms, which might have some expression in initializer. Signed-Off-By: Christopher Li <sparse@xxxxxxxxxxx> --- evaluate.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/evaluate.c b/evaluate.c index 2a126dd..e17da53 100644 --- a/evaluate.c +++ b/evaluate.c @@ -3106,6 +3106,7 @@ static void evaluate_if_statement(struct statement *stmt) static void evaluate_iterator(struct statement *stmt) { + evaluate_symbol_list(stmt->iterator_syms); evaluate_conditional(stmt->iterator_pre_condition, 1); evaluate_conditional(stmt->iterator_post_condition,1); evaluate_statement(stmt->iterator_pre_statement); -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html