aef48b4cb5e17b6b52fcd5b9dcb15d3ee85c0e6c
[libfirm] / ir / ir / irgopt.h
1 /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
2 ** All rights reserved.
3 **
4 ** Author: Christian Schaefer
5 **
6 **  dead node elemination
7 **  walks one time through the whole graph and copies it into another graph,
8 **  so unreachable nodes will be lost.
9 */
10
11 # ifndef _IRGOPT_H_
12 # define _IRGOPT_H_
13
14 # include "irgraph.h"
15
16
17 void local_optimize_graph (ir_graph *irg);
18
19 void dead_node_elemination(ir_graph *irg);
20
21 # endif /* _IRGOPT_H_ */