From 145b76ec75e624a4aa3bf59e93ccd753d5f23b93 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Thu, 23 Jan 2025 11:03:43 +0100 Subject: [PATCH] Cleanup. --- src/compiler/sema_expr.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/compiler/sema_expr.c b/src/compiler/sema_expr.c index 7f3fd5ff5..ce9bafc71 100644 --- a/src/compiler/sema_expr.c +++ b/src/compiler/sema_expr.c @@ -9945,7 +9945,6 @@ RETRY: if (expr->resolve_status == RESOLVE_DONE) return expr_ok(expr); ContextSwitchState state = context_switch_state_push(context, new_context); expr->resolve_status = RESOLVE_RUNNING; - context = new_context; bool success = sema_analyse_expr_lvalue_dispatch(new_context, expr, failed_ref); context_switch_stat_pop(new_context, state); return success;