mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 13:00:09 +01:00
ir_to_mesa: Fix uninitalized value.
This commit is contained in:
parent
ddc3aa0783
commit
e2a358348b
1 changed files with 1 additions and 1 deletions
|
|
@ -1546,7 +1546,7 @@ static void
|
|||
set_branchtargets(struct prog_instruction *mesa_instructions,
|
||||
int num_instructions)
|
||||
{
|
||||
int if_count = 0, loop_count;
|
||||
int if_count = 0, loop_count = 0;
|
||||
int *if_stack, *loop_stack;
|
||||
int if_stack_pos = 0, loop_stack_pos = 0;
|
||||
int i, j;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue