fix typo
authorMatthias Braun <matze@braunis.de>
Mon, 3 May 2010 17:48:20 +0000 (17:48 +0000)
committerMatthias Braun <matze@braunis.de>
Mon, 3 May 2010 17:48:20 +0000 (17:48 +0000)
[r27470]

ir/be/ia32/ia32_transform.c

index 11c1fc6..bc5a381 100644 (file)
@@ -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;