nv50: Silence uninitialized variable warnings.

This commit is contained in:
Vinson Lee
2010-09-15 18:24:28 -07:00
parent 00118c4077
commit b09af4c391
+2 -1
View File
@@ -1198,7 +1198,8 @@ static void
bld_lit(struct bld_context *bld, struct nv_value *dst0[4],
const struct tgsi_full_instruction *insn)
{
struct nv_value *val0, *zero;
struct nv_value *val0 = NULL;
struct nv_value *zero = NULL;
unsigned mask = insn->Dst[0].Register.WriteMask;
if (mask & ((1 << 0) | (1 << 3)))