From 89ac4d2c92d3aa5fa50bac6944c3db6fb1e1fdd1 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Mon, 20 Jun 2011 14:54:30 +0200 Subject: [PATCH] fix bug in lower_calls (found by cparser warning) --- ir/lower/lower_calls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1