mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-28 17:20:37 +02:00
ra: move declarations before code to fix MSVC build
Trivial.
This commit is contained in:
parent
bfb6b76665
commit
088106fa79
1 changed files with 2 additions and 2 deletions
|
|
@ -456,11 +456,11 @@ ra_simplify(struct ra_graph *g)
|
|||
int i;
|
||||
|
||||
while (progress) {
|
||||
progress = false;
|
||||
|
||||
unsigned int best_optimistic_node = ~0;
|
||||
unsigned int lowest_q_total = ~0;
|
||||
|
||||
progress = false;
|
||||
|
||||
for (i = g->count - 1; i >= 0; i--) {
|
||||
if (g->nodes[i].in_stack || g->nodes[i].reg != NO_REG)
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue