- Don't use morgan spiller as default until it is as stable as belady spiller
authorMatthias Braun <matze@braunis.de>
Wed, 24 May 2006 15:18:53 +0000 (15:18 +0000)
committerMatthias Braun <matze@braunis.de>
Wed, 24 May 2006 15:18:53 +0000 (15:18 +0000)
ir/be/bechordal_main.c
ir/be/bechordal_t.h

index d5af416..32f06ab 100644 (file)
@@ -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,
index 61364e0..e76bfdf 100644 (file)
@@ -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),