From: Matthias Braun Date: Mon, 3 May 2010 17:48:20 +0000 (+0000) Subject: fix typo X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=9e8485b091a07e5dffaa494982bf107c452569ac;p=libfirm fix typo [r27470] --- diff --git a/ir/be/ia32/ia32_transform.c b/ir/be/ia32/ia32_transform.c index 11c1fc641..bc5a38156 100644 --- a/ir/be/ia32/ia32_transform.c +++ b/ir/be/ia32/ia32_transform.c @@ -750,7 +750,7 @@ static bool is_sameconv(ir_node *node) /** Skip all signedness convs */ static ir_node *ia32_skip_sameconv(ir_node *node) { - while (is_downconv(node)) + while (is_sameconv(node)) node = get_Conv_op(node); return node;