From: Vinson Lee Date: Wed, 2 Jan 2013 01:02:38 +0000 (-0800) Subject: i965: Add break statement at end of BRW_OPCODE_CONTINUE case. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=622d96aae499445f12861214354a5b9f63e3a738;p=mesa.git i965: Add break statement at end of BRW_OPCODE_CONTINUE case. Fixes missing break in switch defect reported by Coverity. Signed-off-by: Vinson Lee Reviewed-by: Paul Berry Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/i965/brw_eu_emit.c b/src/mesa/drivers/dri/i965/brw_eu_emit.c index 8a93ced760f..bd9c182d665 100644 --- a/src/mesa/drivers/dri/i965/brw_eu_emit.c +++ b/src/mesa/drivers/dri/i965/brw_eu_emit.c @@ -2397,6 +2397,7 @@ brw_set_uip_jip(struct brw_compile *p) assert(insn->bits3.break_cont.uip != 0); assert(insn->bits3.break_cont.jip != 0); + break; case BRW_OPCODE_ENDIF: if (block_end_ip == 0)