From: Brian Paul Date: Thu, 14 Aug 2014 14:44:06 +0000 (-0600) Subject: ra: move declarations before code to fix MSVC build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=088106fa798adf43b7965c2d1861d2905c63d062;p=mesa.git ra: move declarations before code to fix MSVC build Trivial. --- diff --git a/src/mesa/program/register_allocate.c b/src/mesa/program/register_allocate.c index d81a47f24a7..db2be5dfad4 100644 --- a/src/mesa/program/register_allocate.c +++ b/src/mesa/program/register_allocate.c @@ -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;