Remove dead code

This commit is contained in:
Bruce Hill 2025-03-28 14:24:33 -04:00
parent faad7fc97d
commit 670184a02e

View File

@ -232,9 +232,6 @@ void run(env_t *env, ast_t *ast)
}
case Assign: {
auto assign = Match(ast, Assign);
int64_t n = 0;
for (ast_list_t *t = assign->targets; t; t = t->next)
++n;
for (ast_list_t *val = assign->values, *target = assign->targets; val && target; val = val->next, target = target->next) {
type_t *t_target = get_type(env, target->ast);
type_t *t_val = get_type(env, val->ast);