From: Brian Paul Date: Fri, 16 Apr 2010 18:20:27 +0000 (-0600) Subject: llvmpipe: remove unneeded break stmt X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=23a2166bc5e4ceb3576736c3b0ce2b62dd241b3c;p=mesa.git llvmpipe: remove unneeded break stmt --- diff --git a/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c b/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c index 2bcf9174f25..3fa5e51cac5 100644 --- a/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c +++ b/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c @@ -286,7 +286,6 @@ lp_build_blend_func(struct lp_build_context *bld, switch (func) { case PIPE_BLEND_ADD: return lp_build_add(bld, term1, term2); - break; case PIPE_BLEND_SUBTRACT: return lp_build_sub(bld, term1, term2); case PIPE_BLEND_REVERSE_SUBTRACT: