config.h include added
[libfirm] / ir / be / becopyoptmain.h
1 /**
2  * Main header for the optimization reducing the copies needed for:
3  * - phi coalescing
4  * - register-constrained nodes
5  *
6  * Checker included.
7  * By request some statistics are collected too.
8  *
9  * @author Daniel Grund
10  * @date 11.04.2005
11  */
12
13 #ifndef _BECOPYOPTMAIN_H
14 #define _BECOPYOPTMAIN_H
15
16 #include "irgraph.h"
17
18 void be_copy_opt_init(void);
19 void be_copy_opt(ir_graph* irg, const arch_isa_if_t *isa, const arch_register_class_t *cls);
20
21 #endif