From: Brian Paul Date: Mon, 25 Mar 2013 16:23:42 +0000 (-0600) Subject: gallivm: init vars to silence warnings X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c0f16df9389c101586bea9aa5ab75798272e183e;p=mesa.git gallivm: init vars to silence warnings Reviewed-by: Jose Fonseca --- diff --git a/src/gallium/drivers/llvmpipe/lp_state_fs.c b/src/gallium/drivers/llvmpipe/lp_state_fs.c index b87e1a44152..de51f39f159 100644 --- a/src/gallium/drivers/llvmpipe/lp_state_fs.c +++ b/src/gallium/drivers/llvmpipe/lp_state_fs.c @@ -1219,7 +1219,7 @@ convert_to_blend_type(struct gallivm_state *gallivm, for (i = 0; i < num_srcs; ++i) { LLVMValueRef chans[4]; - LLVMValueRef res; + LLVMValueRef res = NULL; unsigned sa = 0; dst[i] = LLVMBuildZExt(builder, src[i], lp_build_vec_type(gallivm, src_type), ""); @@ -1368,7 +1368,7 @@ convert_from_blend_type(struct gallivm_state *gallivm, for (i = 0; i < num_srcs; ++i) { LLVMValueRef chans[4]; - LLVMValueRef res; + LLVMValueRef res = NULL; unsigned sa = 0; dst[i] = LLVMBuildBitCast(builder, src[i], lp_build_vec_type(gallivm, src_type), "");