From f871e91e2082df5da3c2afc955b8a769e3ad7dd5 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Fri, 11 Sep 2009 07:19:23 +0000 Subject: [PATCH] LC_OPT_ENT_BOOL needs an int [r26520] --- ir/be/bespillbelady.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ir/be/bespillbelady.c b/ir/be/bespillbelady.c index 5147332ba..f28cda1dd 100644 --- a/ir/be/bespillbelady.c +++ b/ir/be/bespillbelady.c @@ -96,9 +96,9 @@ static unsigned instr_nr; /**< current instruction number static spill_env_t *senv; /**< see bespill.h */ static ir_node **blocklist; -static bool move_spills = true; -static bool respectloopdepth = true; -static bool improve_known_preds = true; +static int move_spills = true; +static int respectloopdepth = true; +static int improve_known_preds = true; /* factor to weight the different costs of reloading/rematerializing a node (see bespill.h be_get_reload_costs_no_weight) */ static int remat_bonus = 10; -- 2.20.1