remove $Id$, it doesn't work with git anyway
[libfirm] / ir / ana / irextbb.c
index b9e9a72..4dec489 100644 (file)
@@ -22,7 +22,6 @@
  * @brief    Extended basis block support.
  * @author   Michael Beck
  * @date     5.2005
- * @version  $Id$
  */
 #include "config.h"
 
@@ -266,7 +265,7 @@ void compute_extbb(ir_graph *irg)
                extbb->visited = 0;
        }
 
-       irg->extblk_state = ir_extblk_info_valid;
+       set_irg_state(irg, IR_GRAPH_STATE_VALID_EXTENDED_BLOCKS);
 }
 
 /* free all extended block info. */
@@ -277,7 +276,7 @@ void free_extbb(ir_graph *irg)
                xfree(irg->extbb_obst);
                irg->extbb_obst = NULL;
        }
-       irg->extblk_state = ir_extblk_info_none;
+       clear_irg_state(irg, IR_GRAPH_STATE_VALID_EXTENDED_BLOCKS);
 }
 
 /* Return the extended block of a node. */
@@ -380,7 +379,7 @@ static void irg_extblock_walk_2(ir_extblk *blk, extbb_walk_func *pre, extbb_walk
        }
 }
 
-/* walks only over extended Block nodes in the graph.  Has it's own visited
+/* walks only over extended Block nodes in the graph.  Has its own visited
    flag, so that it can be interleaved with the other walker.         */
 void irg_extblock_walk(ir_extblk *blk, extbb_walk_func *pre, extbb_walk_func *post, void *env)
 {