From de0f8bced01ea4411ba0e90d17e1ccf4526fb6a3 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Thu, 10 Sep 2009 11:49:39 +0000 Subject: [PATCH 1/1] libcore wants int, not bool. [r26518] --- ir/be/benewalloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ir/be/benewalloc.c b/ir/be/benewalloc.c index 453beb7b0..4047eeb57 100644 --- a/ir/be/benewalloc.c +++ b/ir/be/benewalloc.c @@ -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), -- 2.20.1