From c77c381fae21d26966d9072ce61fa3879eee8751 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 5 Apr 2017 13:53:41 -0600 Subject: [PATCH] gallivm: init vars to silence gcc warnings Silence warnings about using possibly uninitialized values. Signed-off-by: Brian Paul --- src/gallium/auxiliary/gallivm/lp_bld_sample.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/auxiliary/gallivm/lp_bld_sample.c b/src/gallium/auxiliary/gallivm/lp_bld_sample.c index a4b3a7b8348..a1dc61d40f6 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_sample.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_sample.c @@ -1412,8 +1412,8 @@ lp_build_unnormalized_coords(struct lp_build_sample_context *bld, { const unsigned dims = bld->dims; LLVMValueRef width; - LLVMValueRef height; - LLVMValueRef depth; + LLVMValueRef height = NULL; + LLVMValueRef depth = NULL; lp_build_extract_image_sizes(bld, &bld->float_size_bld, -- 2.30.2