nv50: Silence uninitialized variable warning.

This commit is contained in:
Vinson Lee 2010-09-15 17:24:50 -07:00
parent cbc6748795
commit b533bb7d86
1 changed files with 1 additions and 1 deletions

View File

@ -1539,7 +1539,7 @@ bld_instruction(struct bld_context *bld,
struct nv_value *src0;
struct nv_value *src1;
struct nv_value *src2;
struct nv_value *dst0[4];
struct nv_value *dst0[4] = { 0 };
struct nv_value *temp;
int c;
uint opcode = translate_opcode(insn->Instruction.Opcode);