just some reindentation
authorMatthias Braun <matze@braunis.de>
Mon, 2 Jul 2007 13:56:25 +0000 (13:56 +0000)
committerMatthias Braun <matze@braunis.de>
Mon, 2 Jul 2007 13:56:25 +0000 (13:56 +0000)
[r14885]

ir/opt/convopt.c
ir/opt/ifconv.c

index b984080..ef7c5d6 100644 (file)
@@ -166,8 +166,7 @@ int is_downconv(ir_mode *src_mode, ir_mode *dest_mode)
 }
 
 /* TODO, backends (at least ia23) can't handle it at the moment,
-   and it's probably not more efficient on most
-   archs */
+   and it's probably not more efficient on most archs */
 #if 0
 static
 void try_optimize_cmp(ir_node *node)
index 3bde1ed..fa3d5a7 100644 (file)
@@ -599,17 +599,17 @@ static ir_node* split_psi(ir_node* psi)
 
        if (arity == 1) return psi;
 
-       mode = get_irn_mode(psi);
+       mode  = get_irn_mode(psi);
        block = get_nodes_block(psi);
-       rval = get_Psi_default(psi);
+       rval  = get_Psi_default(psi);
        for (i = arity - 1; i >= 0; --i) {
                ir_node* conds[1];
                ir_node* vals[2];
 
                conds[0] = get_Psi_cond(psi, i);
-               vals[0] = get_Psi_val(psi, i);
-               vals[1] = rval;
-               rval = new_r_Psi(
+               vals[0]  = get_Psi_val(psi, i);
+               vals[1]  = rval;
+               rval     = new_r_Psi(
                        current_ir_graph, block, 1, conds, vals, mode
                );
        }