From ff4f5c340f15bb68287f62dbc5b5245dac3acc43 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Tue, 2 Apr 2013 13:38:07 -0700 Subject: [PATCH] register_allocate: Fix the type of best_benefit. Reviewed-by: Kenneth Graunke (cherry picked from commit 2e177bc8a5585d4b0234b1b680617bfd2ae6ddf8) --- src/mesa/program/register_allocate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/program/register_allocate.c b/src/mesa/program/register_allocate.c index 88793dbdc1e..d5acc9f624e 100644 --- a/src/mesa/program/register_allocate.c +++ b/src/mesa/program/register_allocate.c @@ -545,7 +545,7 @@ int ra_get_best_spill_node(struct ra_graph *g) { unsigned int best_node = -1; - unsigned int best_benefit = 0.0; + float best_benefit = 0.0; unsigned int n; for (n = 0; n < g->count; n++) {