fixed debug output string
[libfirm] / ir / opt / data_flow_scalar_replace.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/opt/data_flow_scalar_replace.h
4  * Purpose:     scalar replacement of compounds
5  * Author:      Beyhan Veliev
6  * Created:
7  * CVS-ID:
8  * Copyright:   (c) 1998-2005 Universität Karlsruhe
9  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
10  */
11
12 #ifndef _DATA_FLOW_SCALAR_REPLACE_H_
13 #define _DATA_FLOW_SCALAR_REPLACE_H_
14
15 #include "irgraph.h"
16
17
18 /**
19  * Do the scalar replacement optimization.
20  * Make a date flow analyze and split the
21  * data flow edges.
22  *
23  * @param irg  the graph which should be optimized
24  */
25 void data_flow_scalar_replacement_opt(ir_graph *irg);
26
27 #endif /* _DATA_FLOW_SCALAR_REPLACE_H_*/