From 9b9ef2aeeec07d011e9c51632914fa5e769ca0ad Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Sat, 21 Feb 2015 22:29:01 -0800 Subject: nir/gcm: Add some missing break statements Reviewed-by: Connor Abbott --- src/glsl/nir/nir_opt_gcm.c | 4 ++++ 1 file changed, 4 insertions(+) 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; -- cgit v1.2.3