From: Michael Beck Date: Mon, 27 Dec 2010 22:29:27 +0000 (+0000) Subject: Fixed warning because of wrong type. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=e7f07dc36d8401661b790ed4e79d91c10c0fb866;p=libfirm Fixed warning because of wrong type. [r28198] --- diff --git a/ir/opt/jumpthreading.c b/ir/opt/jumpthreading.c index 006ea4434..c6120eebb 100644 --- a/ir/opt/jumpthreading.c +++ b/ir/opt/jumpthreading.c @@ -628,7 +628,7 @@ static void thread_jumps(ir_node* block, void* data) const ir_edge_t *edge, *next; ir_graph *irg; ir_node *bad; - size_t cnst_pos; + int cnst_pos; if (get_Block_n_cfgpreds(block) != 1) return;