LC_OPT_ENT_BOOL needs an int
authorMatthias Braun <matze@braunis.de>
Fri, 11 Sep 2009 07:19:23 +0000 (07:19 +0000)
committerMatthias Braun <matze@braunis.de>
Fri, 11 Sep 2009 07:19:23 +0000 (07:19 +0000)
[r26520]

ir/be/bespillbelady.c

index 5147332..f28cda1 100644 (file)
@@ -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;