nv50: Silence uninitialized variable warning.

This commit is contained in:
Vinson Lee
2010-09-15 17:27:50 -07:00
parent b533bb7d86
commit 84e41b738b
+2 -1
View File
@@ -289,7 +289,8 @@ bld_phi(struct bld_context *bld, struct nv_basic_block *b,
struct bld_value_stack *stack)
{
struct nv_basic_block *in;
struct nv_value *vals[16], *val;
struct nv_value *vals[16] = { 0 };
struct nv_value *val;
struct nv_instruction *phi;
int i, j, n;