Lots of changes: Removed all file for phi-opt. Generic approach is now
[libfirm] / ir / be / becopystat.h
1 /**
2  * @author Daniel Grund
3  * @date 11.04.2005
4  */
5
6 //TODO
7 #ifndef _BECOPYSTAT_H
8 #define _BECOPYSTAT_H
9
10 #include "becopyopt.h"
11
12 typedef struct _irg_stat_t irg_stat_t;
13
14 irg_stat_t *new_irg_stat(copy_opt_t *co);
15 void irg_stat_count(irg_stat_t *is, copy_opt_t *co, int phase);
16 void irg_stat_print(irg_stat_t *is);
17 void all_stat_dump(void);
18
19 #endif