libcore wants int, not bool.
authorChristoph Mallon <christoph.mallon@gmx.de>
Thu, 10 Sep 2009 11:49:39 +0000 (11:49 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Thu, 10 Sep 2009 11:49:39 +0000 (11:49 +0000)
[r26518]

ir/be/benewalloc.c

index 453beb7..4047eeb 100644 (file)
@@ -102,9 +102,9 @@ static unsigned                    *normal_regs;
 static int                         *congruence_classes;
 static ir_node                    **block_order;
 static int                          n_block_order;
-static bool                         create_preferences        = true;
-static bool                         create_congruence_classes = true;
-static bool                         propagate_phi_registers   = true;
+static int                          create_preferences        = true;
+static int                          create_congruence_classes = true;
+static int                          propagate_phi_registers   = true;
 
 static const lc_opt_table_entry_t options[] = {
        LC_OPT_ENT_BOOL("prefs", "use preference based coloring", &create_preferences),