From: Michael Beck Date: Mon, 10 Dec 2007 17:52:14 +0000 (+0000) Subject: removed some consts creating MSVC warnings X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=468f84d524460e7d836537019ef4ccb437ab718e;p=libfirm removed some consts creating MSVC warnings [r16936] --- diff --git a/ir/opt/boolopt.c b/ir/opt/boolopt.c index 0518bcdd4..67d077d04 100644 --- a/ir/opt/boolopt.c +++ b/ir/opt/boolopt.c @@ -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); }