Bugfixes. DBG per irg. Dump nothing is default.
[libfirm] / ir / be / becopyoptmain.h
1 /**
2  * Author:      Daniel Grund
3  * Date:                11.04.2005
4  * Copyright:   (c) Universitaet Karlsruhe
5  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
6
7  * Main header for the optimization reducing the copies needed for:
8  * - phi coalescing
9  * - register-constrained nodes
10  *
11  */
12
13 #ifndef _BECOPYOPTMAIN_H
14 #define _BECOPYOPTMAIN_H
15
16 #include "irgraph.h"
17 #include "bearch.h"
18
19 #include "bechordal.h"
20
21 void be_copy_opt_init(void);
22 void be_copy_opt(be_chordal_env_t *chordal_env);
23
24 #endif