- moved the imul mem,imm32 splitting into peephole optimizations
[libfirm] / ir / opt / condeval.c
index 85b42ad..276c79b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -271,7 +271,7 @@ static void copy_and_fix(const condeval_env_t *env, ir_node *block,
 #ifdef AVOID_PHIB
                /* we may not copy mode_b nodes, because this could produce phi with
                 * mode_bs which can't be handled in all backends. Instead we duplicate
-                * the node and move it to it's users */
+                * the node and move it to its users */
                if (mode == mode_b) {
                        const ir_edge_t *edge, *next;
                        ir_node *pred;
@@ -665,7 +665,7 @@ void opt_cond_eval(ir_graph* irg)
 
        edges_assure(irg);
        set_using_irn_link(irg);
-       set_using_visited(irg);
+       set_using_irn_visited(irg);
 
        changed = 0;
        do {
@@ -682,6 +682,6 @@ void opt_cond_eval(ir_graph* irg)
                set_irg_loopinfo_inconsistent(irg);
        }
 
-       clear_using_visited(irg);
+       clear_using_irn_visited(irg);
        clear_using_irn_link(irg);
 }