From: Jason Ekstrand Date: Sun, 22 Feb 2015 06:29:01 +0000 (-0800) Subject: nir/gcm: Add some missing break statements X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9b9ef2aeeec07d011e9c51632914fa5e769ca0ad;p=mesa.git nir/gcm: Add some missing break statements Reviewed-by: Connor Abbott --- diff --git a/src/glsl/nir/nir_opt_gcm.c b/src/glsl/nir/nir_opt_gcm.c index bf565b96988..b4f5fd3d50a 100644 --- a/src/glsl/nir/nir_opt_gcm.c +++ b/src/glsl/nir/nir_opt_gcm.c @@ -121,9 +121,11 @@ gcm_pin_instructions_block(nir_block *block, void *void_state) case nir_op_fddy_coarse: /* These can only go in uniform control flow; pin them for now */ instr->pass_flags = GCM_INSTR_PINNED; + break; default: instr->pass_flags = 0; + break; } break; @@ -134,9 +136,11 @@ gcm_pin_instructions_block(nir_block *block, void *void_state) case nir_texop_lod: /* These two take implicit derivatives so they need to be pinned */ instr->pass_flags = GCM_INSTR_PINNED; + break; default: instr->pass_flags = 0; + break; } break;