From 0ac316470813b4f2e825ff4befbbf2135cccce94 Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Sun, 21 Jul 2013 00:04:36 -0700 Subject: [PATCH] gallivm: Remove dead code in lp_build_compare_ext. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit There are earlier returns for PIPE_FUNC_NEVER and PIPE_FUNC_ALWAYS. The switch value of 'func' cannot be either of those values. Fixes "Logically dead code" defects reported by Coverity. Signed-off-by: Vinson Lee Reviewed-by: José Fonseca --- src/gallium/auxiliary/gallivm/lp_bld_logic.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/gallium/auxiliary/gallivm/lp_bld_logic.c b/src/gallium/auxiliary/gallivm/lp_bld_logic.c index 322d385db6c..fc7a7289707 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_logic.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_logic.c @@ -100,12 +100,6 @@ lp_build_compare_ext(struct gallivm_state *gallivm, if(type.floating) { LLVMRealPredicate op; switch(func) { - case PIPE_FUNC_NEVER: - op = LLVMRealPredicateFalse; - break; - case PIPE_FUNC_ALWAYS: - op = LLVMRealPredicateTrue; - break; case PIPE_FUNC_EQUAL: op = ordered ? LLVMRealOEQ : LLVMRealUEQ; break; -- 2.30.2