From 8b7059c58d8e7c544baed6bfb4cb7bcb84063fd2 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Wed, 30 Jun 2010 12:48:00 +0000 Subject: [PATCH] avoid warning when building without ILP [r27682] --- ir/be/becopystat.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ir/be/becopystat.c b/ir/be/becopystat.c index 6baefbb89..813241913 100644 --- a/ir/be/becopystat.c +++ b/ir/be/becopystat.c @@ -177,14 +177,6 @@ void copystat_add_heur_costs(int costs) { curr_vals[I_COPIES_HEUR] += costs; } -void copystat_add_ilp_5_sec_costs(int costs) -{ - curr_vals[I_COPIES_5SEC] += costs; -} -void copystat_add_ilp_30_sec_costs(int costs) -{ - curr_vals[I_COPIES_30SEC] += costs; -} void copystat_add_opt_costs(int costs) { curr_vals[I_COPIES_OPT] += costs; @@ -196,6 +188,14 @@ void copystat_add_heur_time(int time) #ifdef WITH_ILP +void copystat_add_ilp_5_sec_costs(int costs) +{ + curr_vals[I_COPIES_5SEC] += costs; +} +void copystat_add_ilp_30_sec_costs(int costs) +{ + curr_vals[I_COPIES_30SEC] += costs; +} void copystat_add_ilp_time(int time) { curr_vals[I_ILP_TIME] += time; -- 2.20.1