From 2d83376719b1bd5fd45da73de41d0e3656bb52da Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sun, 25 Nov 2012 14:48:52 +0100 Subject: [PATCH] bechordal: Remove remnants of the long gone split phase. --- ir/be/be_t.h | 1 - ir/be/bechordal.c | 7 ------- ir/be/bemain.c | 1 - 3 files changed, 9 deletions(-) diff --git a/ir/be/be_t.h b/ir/be/be_t.h index d567af3c6..7d883666f 100644 --- a/ir/be/be_t.h +++ b/ir/be/be_t.h @@ -110,7 +110,6 @@ typedef enum { T_RA_PREPARATION, T_SCHED, T_CONSTR, - T_SPLIT, T_FINISH, T_EMIT, T_VERIFY, diff --git a/ir/be/bechordal.c b/ir/be/bechordal.c index 18039e5c8..25e3a14d3 100644 --- a/ir/be/bechordal.c +++ b/ir/be/bechordal.c @@ -368,13 +368,6 @@ static void be_ra_chordal_color(be_chordal_env_t *const chordal_env) be_assure_live_sets(irg); assure_doms(irg); - be_timer_push(T_SPLIT); - if (chordal_env->opts->dump_flags & BE_CH_DUMP_SPLIT) { - snprintf(buf, sizeof(buf), "%s-split", chordal_env->cls->name); - dump_ir_graph(irg, buf); - } - be_timer_pop(T_SPLIT); - be_timer_push(T_CONSTR); /* Handle register targeting constraints */ diff --git a/ir/be/bemain.c b/ir/be/bemain.c index 26a5148c4..5a3b33f60 100644 --- a/ir/be/bemain.c +++ b/ir/be/bemain.c @@ -495,7 +495,6 @@ static const char *get_timer_name(be_timer_id_t id) case T_CODEGEN: return "codegen"; case T_RA_PREPARATION: return "ra_preparation"; case T_SCHED: return "sched"; - case T_SPLIT: return "split"; case T_CONSTR: return "constr"; case T_FINISH: return "finish"; case T_EMIT: return "emit"; -- 2.20.1