From e962afa3fdb1ebb2ea6763e045e224f137f3a0e1 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sat, 11 Oct 2008 20:31:39 +0000 Subject: [PATCH] Remove the unused attribute const arch_env_t *arch_env from struct be_verify_schedule_env_t. [r22746] --- ir/be/beverify.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ir/be/beverify.c b/ir/be/beverify.c index 07f8a049f..810e4d580 100644 --- a/ir/be/beverify.c +++ b/ir/be/beverify.c @@ -147,7 +147,6 @@ typedef struct be_verify_schedule_env_t_ { int problem_found; /**< flags indicating if there was a problem */ bitset_t *scheduled; /**< bitset of scheduled nodes */ ir_graph *irg; /**< the irg to check */ - const arch_env_t *arch_env; /**< the arch_env */ } be_verify_schedule_env_t; /** @@ -344,7 +343,6 @@ int be_verify_schedule(const be_irg_t *birg) env.problem_found = 0; env.irg = be_get_birg_irg(birg); env.scheduled = bitset_alloca(get_irg_last_idx(env.irg)); - env.arch_env = birg->main_env->arch_env; irg_block_walk_graph(env.irg, verify_schedule_walker, NULL, &env); /* check if all nodes are scheduled */ -- 2.20.1