From 24f23ed4ce5975802ab467cec275f0e6665880a0 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Wed, 24 May 2006 15:18:53 +0000 Subject: [PATCH] - Don't use morgan spiller as default until it is as stable as belady spiller --- ir/be/bechordal_main.c | 2 +- ir/be/bechordal_t.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ir/be/bechordal_main.c b/ir/be/bechordal_main.c index d5af416b5..32f06ab1e 100644 --- a/ir/be/bechordal_main.c +++ b/ir/be/bechordal_main.c @@ -110,7 +110,7 @@ int nodes_interfere(const be_chordal_env_t *env, const ir_node *a, const ir_node static be_ra_chordal_opts_t options = { BE_CH_DUMP_NONE, - BE_CH_SPILL_MORGAN, + BE_CH_SPILL_BELADY, BE_CH_COPYMIN_HEUR1, BE_CH_IFG_STD, BE_CH_LOWER_PERM_SWAP, diff --git a/ir/be/bechordal_t.h b/ir/be/bechordal_t.h index 61364e0f0..e76bfdf01 100644 --- a/ir/be/bechordal_t.h +++ b/ir/be/bechordal_t.h @@ -90,9 +90,9 @@ void be_ra_chordal_check(be_chordal_env_t *chordal_env); enum { /* spill method */ - BE_CH_SPILL_BELADY = 3, + BE_CH_SPILL_BELADY = 1, BE_CH_SPILL_ILP = 2, - BE_CH_SPILL_MORGAN = 1, + BE_CH_SPILL_MORGAN = 3, /* Dump flags */ BE_CH_DUMP_NONE = (1 << 0), -- 2.20.1