gallivm: silence uninitialized variable warnings
authorBrian Paul <brianp@vmware.com>
Tue, 17 Jul 2012 20:41:29 +0000 (14:41 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 17 Jul 2012 20:41:29 +0000 (14:41 -0600)
src/gallium/auxiliary/gallivm/lp_bld_arit.c
src/gallium/auxiliary/gallivm/lp_bld_sample.c
src/gallium/auxiliary/gallivm/lp_bld_sample_aos.c

index d226dab5b81dd281e1be4348ae90bfe4f1fa70e0..7878544436dfaeb93333cb55a7db07a038fd2b04 100644 (file)
@@ -77,7 +77,7 @@ lp_build_min_simple(struct lp_build_context *bld,
 {
    const struct lp_type type = bld->type;
    const char *intrinsic = NULL;
-   unsigned intr_size;
+   unsigned intr_size = 0;
    LLVMValueRef cond;
 
    assert(lp_check_value(type, a));
@@ -167,7 +167,7 @@ lp_build_max_simple(struct lp_build_context *bld,
 {
    const struct lp_type type = bld->type;
    const char *intrinsic = NULL;
-   unsigned intr_size;
+   unsigned intr_size = 0;
    LLVMValueRef cond;
 
    assert(lp_check_value(type, a));
index 85211161f3c148eb75d896428c2ff03c89445f8f..1ea59ea222c17f1173e6bc80e1c851ae8baf01f2 100644 (file)
@@ -214,6 +214,9 @@ lp_build_rho(struct lp_build_sample_context *bld,
    if (dims > 2) {
       abs_ddx_ddy[1] = lp_build_abs(coord_bld, ddx_ddy[1]);
    }
+   else {
+      abs_ddx_ddy[1] = NULL;
+   }
 
    if (dims == 1) {
       static const unsigned char swizzle1[] = {
index ad1b29cf096602c9121fc661578a539d8f170e5b..d81033f83a0e6b1960eb6d40e6702d7b896e3669 100644 (file)
@@ -655,7 +655,7 @@ lp_build_sample_image_nearest_afloat(struct lp_build_sample_context *bld,
    LLVMValueRef width_vec, height_vec, depth_vec;
    LLVMValueRef offset;
    LLVMValueRef x_subcoord, y_subcoord;
-   LLVMValueRef x_icoord, y_icoord, z_icoord;
+   LLVMValueRef x_icoord = NULL, y_icoord = NULL, z_icoord = NULL;
    LLVMValueRef flt_size;
 
    flt_size = lp_build_int_to_float(&bld->float_size_bld, int_size);