From cc5b1f80391090732d5bc628aceeed61ee9b3a1c Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=B6tz=20Lindenmaier?= Date: Thu, 29 Apr 2004 08:59:12 +0000 Subject: [PATCH] fix for firmjni [r2808] --- ir/ir/iropt.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ir/ir/iropt.h b/ir/ir/iropt.h index bb029c679..941d8836c 100644 --- a/ir/ir/iropt.h +++ b/ir/ir/iropt.h @@ -29,7 +29,7 @@ /** If the expression referenced can be evaluated statically * computed_value returns a tarval representing the result. * Else returns tarval_bad. */ -tarval *computed_value (ir_node*); +tarval *computed_value (ir_node *n); /** Applies all optimizations to n that are expressible as a pattern * in Firm, i.e., they need not a walk of the graph. @@ -39,11 +39,11 @@ tarval *computed_value (ir_node*); * An equivalent optimization is applied in the constructors defined in * ircons.ch. There n is freed if a better node could be found. */ -ir_node *optimize_in_place (ir_node*); +ir_node *optimize_in_place (ir_node *n); /** * set the default ir op operations */ -ir_op *firm_set_default_operations(ir_op*); +ir_op *firm_set_default_operations(ir_op *op); # endif /* _IROPT_H_ */ -- 2.20.1