diff --git a/src/gallium/drivers/llvmpipe/lp_bld_alpha.c b/src/gallium/drivers/llvmpipe/lp_bld_alpha.c index c7ab0168f60..47035b6939b 100644 --- a/src/gallium/drivers/llvmpipe/lp_bld_alpha.c +++ b/src/gallium/drivers/llvmpipe/lp_bld_alpha.c @@ -56,17 +56,16 @@ lp_build_alpha_test(struct gallivm_state *gallivm, boolean do_branch) { struct lp_build_context bld; - LLVMValueRef test; lp_build_context_init(&bld, gallivm, type); /* * Alpha testing needs to be done in the color buffer precision. * - * TODO: Ideally, instead of duplicating the color conversion code, we would do - * alpha testing after converting the output colors, but that's not very - * convenient, because it needs to be done before depth testing. Hopefully - * LLVM will detect and remove the duplicate expression. + * TODO: Ideally, instead of duplicating the color conversion code, we + * would do alpha testing after converting the output colors, but that's + * not very convenient, because it needs to be done before depth testing. + * Hopefully LLVM will detect and remove the duplicate expression. * * FIXME: This should be generalized to formats other than rgba8 variants. */ @@ -84,7 +83,7 @@ lp_build_alpha_test(struct gallivm_state *gallivm, lp_build_context_init(&bld, gallivm, type); } - test = lp_build_cmp(&bld, func, alpha, ref); + LLVMValueRef test = lp_build_cmp(&bld, func, alpha, ref); lp_build_name(test, "alpha_mask");