gallivm: silence uninitialized var warning

This commit is contained in:
Brian Paul 2010-05-13 13:34:24 -06:00
parent d9096926f8
commit 415c40735d

View file

@ -625,7 +625,7 @@ emit_store(
LLVMValueRef value)
{
const struct tgsi_full_dst_register *reg = &inst->Dst[index];
LLVMValueRef addr;
LLVMValueRef addr = NULL;
switch( inst->Instruction.Saturate ) {
case TGSI_SAT_NONE: