From: Matthias Braun Date: Mon, 20 Jun 2011 12:54:30 +0000 (+0200) Subject: fix bug in lower_calls (found by cparser warning) X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=89ac4d2c92d3aa5fa50bac6944c3db6fb1e1fdd1;p=libfirm fix bug in lower_calls (found by cparser warning) --- diff --git a/ir/lower/lower_calls.c b/ir/lower/lower_calls.c index a3eca0b25..65e58b307 100644 --- a/ir/lower/lower_calls.c +++ b/ir/lower/lower_calls.c @@ -221,7 +221,7 @@ static cl_entry *get_Call_entry(ir_node *call, wlk_env *env) { cl_entry *res = (cl_entry*)get_irn_link(call); if (res == NULL) { - cl_entry *res = OALLOC(&env->obst, cl_entry); + res = OALLOC(&env->obst, cl_entry); res->next = env->cl_list; res->call = call; res->copyb = NULL;