summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--codegen.c2
1 files changed, 1 insertions, 1 deletions
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;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback