indent
authorDaniel Grund <grund@cs.uni-saarland.de>
Wed, 27 Jul 2005 09:47:11 +0000 (09:47 +0000)
committerDaniel Grund <grund@cs.uni-saarland.de>
Wed, 27 Jul 2005 09:47:11 +0000 (09:47 +0000)
ir/be/bechordal.c
ir/be/bera.c

index 488fa95..65e54fe 100644 (file)
@@ -333,7 +333,7 @@ static void pressure(ir_node *block, void *env_ptr)
 
 #ifdef BUILD_GRAPH
                        bitset_foreach(live, elm)
-                       add_if(env, nr, (int) elm);
+                               add_if(env, nr, (int) elm);
 #endif
                }
 
index ff3ae55..cb234bc 100644 (file)
@@ -89,8 +89,9 @@ int values_interfere(const ir_node *a, const ir_node *b)
       }
 
       /* If b dominates a user of a, we can safely return 1 here. */
-      if(value_dominates(b, user))
-        return 1;
+      if(value_dominates(b, user)) {
+       return 1;
+      }
     }
 
   }