From 468f84d524460e7d836537019ef4ccb437ab718e Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Mon, 10 Dec 2007 17:52:14 +0000 Subject: [PATCH] removed some consts creating MSVC warnings [r16936] --- ir/opt/boolopt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } -- 2.20.1