From ff236fa9b6a35ce261098d288f77f238c3286e15 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Wed, 21 Apr 2010 15:08:08 -0700 Subject: [PATCH] Add missing break statement --- ir_variable.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ir_variable.cpp b/ir_variable.cpp index 12992a9b812..a2c0803e55a 100644 --- a/ir_variable.cpp +++ b/ir_variable.cpp @@ -46,6 +46,7 @@ add_variable(const char *name, enum ir_variable_mode mode, case ir_var_inout: var->shader_in = true; var->shader_out = true; + break; case ir_var_out: var->shader_out = true; break; -- 2.30.2