diff options
author | Andre Maasikas <[email protected]> | 2009-12-08 10:16:14 +0200 |
---|---|---|
committer | Andre Maasikas <[email protected]> | 2009-12-08 10:16:14 +0200 |
commit | 0d4a05445c6b47b93269a3829afbe509ffec4817 (patch) | |
tree | 20bf88dcabe25cea87e1e084420111875f17ad72 /src/gallium/drivers/llvmpipe | |
parent | ba167f812c44c4bb8c8f844c3d5fbff60bfc93eb (diff) | |
parent | 369669ff9a7ff7636cadef8e2b13f2f28face98f (diff) |
Merge branch 'mesa_7_6_branch' into mesa_7_7_branch
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_bld_tgsi_soa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_bld_tgsi_soa.c b/src/gallium/drivers/llvmpipe/lp_bld_tgsi_soa.c index 64027de6aa9..94ce4ae8318 100644 --- a/src/gallium/drivers/llvmpipe/lp_bld_tgsi_soa.c +++ b/src/gallium/drivers/llvmpipe/lp_bld_tgsi_soa.c @@ -560,9 +560,9 @@ emit_instruction( if (IS_DST0_CHANNEL_ENABLED( inst, CHAN_X ) || IS_DST0_CHANNEL_ENABLED( inst, CHAN_Y ) || IS_DST0_CHANNEL_ENABLED( inst, CHAN_Z )) { - LLVMValueRef *p_floor_log2; - LLVMValueRef *p_exp; - LLVMValueRef *p_log2; + LLVMValueRef *p_floor_log2 = NULL; + LLVMValueRef *p_exp = NULL; + LLVMValueRef *p_log2 = NULL; src0 = emit_fetch( bld, inst, 0, CHAN_X ); src0 = lp_build_abs( &bld->base, src0 ); |