From c7d6b7a8da2850dd68906929447ac6720604560a Mon Sep 17 00:00:00 2001 From: Matthew Sotoudeh Date: Mon, 2 Sep 2024 17:37:25 -0700 Subject: fix pretokenization --- codegen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'codegen.c') diff --git a/codegen.c b/codegen.c index b939531..857e89a 100644 --- a/codegen.c +++ b/codegen.c @@ -490,7 +490,7 @@ static void gen_expr(Node *node, int to_tmp) { println("\tt%d = ! t%d ;", rhsfalse, rhs); println("\tif ( t%d ) goto _L_false_%d ;", rhsfalse, c); println("\tt%d = 1 ;", to_tmp); - println("\tgoto _L_end_%d;", c); + println("\tgoto _L_end_%d ;", c); println("\t_L_false_%d :", c); println("\t_L_end_%d :", c); return; -- cgit v1.2.3