Add a missing break.

"return" falling through to "goto" was bad news :)
This commit is contained in:
Bill Currie 2011-01-22 15:52:01 +09:00
parent d5f669af7a
commit 55d3d17807

View file

@ -707,6 +707,7 @@ statement_uexpr (sblock_t *sblock, expr_t *e)
sblock_add_statement (sblock, s);
sblock->next = new_sblock ();
sblock = sblock->next;
break;
case 'g':
sblock = statement_branch (sblock, e);
break;