diff options
author | Marek Olšák <[email protected]> | 2015-02-20 20:14:33 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-02-21 00:16:34 +0100 |
commit | 6f273ec408b794d1d8969ec52a5952c9babc1c52 (patch) | |
tree | 0332bc18b5c551d235c4ceb4e4dffa597c9128fa /src | |
parent | b21ad12485d24565fd7f21addb5c86c77cf64580 (diff) |
gallivm: fix uninitialized-variable warnings
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_init.c | 2 | ||||
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_sample.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_init.c b/src/gallium/auxiliary/gallivm/lp_bld_init.c index b9593decbca..6133883e149 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_init.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_init.c @@ -509,7 +509,7 @@ void gallivm_compile_module(struct gallivm_state *gallivm) { LLVMValueRef func; - int64_t time_begin; + int64_t time_begin = 0; assert(!gallivm->compiled); diff --git a/src/gallium/auxiliary/gallivm/lp_bld_sample.c b/src/gallium/auxiliary/gallivm/lp_bld_sample.c index 093c8fcc748..7d18ee592ba 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_sample.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_sample.c @@ -221,7 +221,7 @@ lp_build_rho(struct lp_build_sample_context *bld, struct lp_build_context *coord_bld = &bld->coord_bld; struct lp_build_context *rho_bld = &bld->lodf_bld; const unsigned dims = bld->dims; - LLVMValueRef ddx_ddy[2]; + LLVMValueRef ddx_ddy[2] = {NULL}; LLVMBuilderRef builder = bld->gallivm->builder; LLVMTypeRef i32t = LLVMInt32TypeInContext(bld->gallivm->context); LLVMValueRef index0 = LLVMConstInt(i32t, 0, 0); |