summaryrefslogtreecommitdiff
path: root/copy.c
diff options
context:
space:
mode:
Diffstat (limited to 'copy.c')
-rw-r--r--copy.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/copy.c b/copy.c
index 9ff5128..e3d2076 100644
--- a/copy.c
+++ b/copy.c
@@ -440,6 +440,9 @@ static void copy_stmt(Copier *c, Statement *out, Statement *in) {
case STMT_MESSAGE:
copy_expr(c, &out->message.text, &in->message.text);
break;
+ case STMT_BREAK:
+ case STMT_CONT:
+ break;
}
}