cosmetic change
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 30 Aug 2006 09:27:22 +0000 (09:27 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 30 Aug 2006 09:27:22 +0000 (09:27 +0000)
[r8141]

ir/ir/irgopt.c
ir/ir/irop.c

index 47d00d6..d093c39 100644 (file)
@@ -163,7 +163,7 @@ void optimize_graph_df(ir_graph *irg) {
   del_identities(irg->value_table);
   irg->value_table = new_identities();
 
-  if (get_irg_dom_state(current_ir_graph) == dom_consistent)
+  if (get_irg_dom_state(irg) == dom_consistent)
     irg_block_walk_graph(irg, NULL, kill_dead_blocks, NULL);
 
   /* invalidate info */
index 70233da..6ca5e62 100644 (file)
@@ -3,10 +3,10 @@
  * File name:   ir/ir/irop.c
  * Purpose:     Representation of opcode of intermediate operation.
  * Author:      Christian Schaefer
- * Modified by: Goetz Lindenmaier
+ * Modified by: Goetz Lindenmaier, Michael Beck
  * Created:
  * CVS-ID:      $Id$
- * Copyright:   (c) 1998-2003 Universität Karlsruhe
+ * Copyright:   (c) 1998-2006 Universität Karlsruhe
  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
  */
 
 # include <string.h>
 #endif
 
-# include "irop_t.h"
-# include "irnode_t.h"
-# include "irhooks.h"
+#include "irop_t.h"
+#include "irnode_t.h"
+#include "irhooks.h"
 
-# include "iropt_t.h"             /* for firm_set_default_operations */
-# include "irvrfy_t.h"
-# include "reassoc_t.h"
+#include "iropt_t.h"             /* for firm_set_default_operations */
+#include "irvrfy_t.h"
+#include "reassoc_t.h"
 
-# include "xmalloc.h"
+#include "xmalloc.h"
 
 /** the available next opcode */
 static unsigned next_iro = iro_MaxOpcode;