From 251eb753187fee83e6413f44f8b3cf0be1b4f4cb Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Mon, 29 Mar 2010 14:15:05 -0700 Subject: [PATCH] Add missing break-statements in ast_expression::hir The ast_conditional case was flowing right into ast_pre_inc. --- ast_to_hir.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ast_to_hir.cpp b/ast_to_hir.cpp index 0a505bf4146..8d34adf8ef4 100644 --- a/ast_to_hir.cpp +++ b/ast_to_hir.cpp @@ -649,12 +649,15 @@ ast_expression::hir(exec_list *instructions, case ast_ls_assign: case ast_rs_assign: + break; case ast_and_assign: case ast_xor_assign: case ast_or_assign: + break; case ast_conditional: + break; case ast_pre_inc: case ast_pre_dec: { -- 2.30.2