some fixes for xml dumper / still buggy.
[libfirm] / ir / ir / iropt.h
index 6e13480..50519a7 100644 (file)
@@ -1,18 +1,23 @@
 /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
-** All rights reserved.
-**
-** Authors: Martin Trapp, Christian Schaefer
-**
-** Declarations for optimizations intertwined with IR construction.
+* All rights reserved.
 */
 
+/**
+* @file iropt.h
+*
+* Declarations for optimizations intertwined with IR construction.
+*
+* @author Martin Trapp, Christian Schaefer
+*/
+
+/* $Id$ */
+
 # ifndef _IROPT_H_
 # define _IROPT_H_
 
 # include "irnode.h"
 # include "irgraph.h"
 # include "irflag.h"
-# include "tune.h"
 
 /* optimize_in_place (n) may change the contents of the ir_node itself,
    [e.g. by making it a Id-node], but does not change its identity.
@@ -23,9 +28,8 @@
 
    optimize (n) may deallocate `n' and everything allocated after `n'! */
 
-tarval *computed_value (ir_node *n);
+tarval  *computed_value (ir_node *n);
 
-ir_node *optimize (ir_node *n);
 ir_node *optimize_in_place (ir_node *n);
 
 # endif /* _IROPT_H_ */