reenable conv skipping in address mode code
authorMatthias Braun <matze@braunis.de>
Fri, 12 Oct 2007 20:02:04 +0000 (20:02 +0000)
committerMatthias Braun <matze@braunis.de>
Fri, 12 Oct 2007 20:02:04 +0000 (20:02 +0000)
[r16176]

ir/be/ia32/ia32_address_mode.c

index 72c43a6..f5ef831 100644 (file)
@@ -254,10 +254,8 @@ static int is_downconv(const ir_node *node)
 
 static ir_node *skip_downconv(ir_node *node)
 {
-#if 0
        while(is_downconv(node))
                node = get_Conv_op(node);
-#endif
 
        return node;
 }