From 1329626215fd588860eedc71b38ba7d5b840e5ab Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Wed, 5 Jul 2017 16:10:59 -0700 Subject: [PATCH] Add missing break --- ASTree.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ASTree.cpp b/ASTree.cpp index c6577a1..90e75ae 100644 --- a/ASTree.cpp +++ b/ASTree.cpp @@ -239,6 +239,7 @@ PycRef BuildFromCode(PycRef code, PycModule* mod) stack.pop(); stack.push(new ASTBinary(left, right, ASTBinary::BIN_MAT_MULTIPLY)); } + break; case Pyc::BREAK_LOOP: curblock->append(new ASTKeyword(ASTKeyword::KW_BREAK)); break;