Commit bc715f99 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #3155 from cremno/fix-3152

fix #3152
parents b4e18898 309791b3
...@@ -2801,7 +2801,8 @@ loop_break(codegen_scope *s, node *tree) ...@@ -2801,7 +2801,8 @@ loop_break(codegen_scope *s, node *tree)
loop = loop->prev; loop = loop->prev;
} }
if (!loop) { if (!loop) {
codegen_error(s, "unexpected break"); raise_error(s, "unexpected break");
return;
} }
if (loop->type == LOOP_NORMAL) { if (loop->type == LOOP_NORMAL) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment