From: Götz Lindenmaier Date: Thu, 29 Apr 2004 08:59:12 +0000 (+0000) Subject: fix for firmjni X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=cc5b1f80391090732d5bc628aceeed61ee9b3a1c;p=libfirm fix for firmjni [r2808] --- 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_ */