mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-04 14:50:35 +02:00
nv50: Silence uninitialized variable warning.
This commit is contained in:
parent
cbc6748795
commit
b533bb7d86
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue