Mesa (master): nir/gcm: Add some missing break statements

Jason Ekstrand jekstrand at kemper.freedesktop.org
Mon Feb 23 21:23:40 UTC 2015


Module: Mesa
Branch: master
Commit: 9b9ef2aeeec07d011e9c51632914fa5e769ca0ad
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9b9ef2aeeec07d011e9c51632914fa5e769ca0ad

Author: Jason Ekstrand <jason.ekstrand at intel.com>
Date:   Sat Feb 21 22:29:01 2015 -0800

nir/gcm: Add some missing break statements

Reviewed-by: Connor Abbott <cwabbott0 at gmail.com>

---

 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 bf565b9..b4f5fd3 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;
 




More information about the mesa-commit mailing list