removed some consts creating MSVC warnings
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 10 Dec 2007 17:52:14 +0000 (17:52 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 10 Dec 2007 17:52:14 +0000 (17:52 +0000)
[r16936]

ir/opt/boolopt.c

index 0518bcd..67d077d 100644 (file)
@@ -195,7 +195,7 @@ static void bool_or(ir_node *const n)
        }
 }
 
-static void bool_walk(ir_node *const n, void *const env)
+static void bool_walk(ir_node *n, void *env)
 {
        (void)env;
 
@@ -208,7 +208,7 @@ static void bool_walk(ir_node *const n, void *const env)
        }
 }
 
-void opt_bool(ir_graph *const irg)
+void opt_bool(ir_graph *irg)
 {
        irg_walk_graph(irg, NULL, bool_walk, NULL);
 }