Fixed 'inline' lossage --flo
[libfirm] / ir / ir / ircgcons.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/ircgcons.h
4  * Purpose:     Construction and removal of interprocedural representation
5  *              (explicit interprocedural dependencies).
6  * Author:      Hubert Schmid
7  * Modified by:
8  * Created:     09.06.2002
9  * CVS-ID:      $Id$
10  * Copyright:   (c) 2002-2003 Universität Karlsruhe
11  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
12  */
13
14
15 #ifndef _CONSTRUCT_H_
16 #define _CONSTRUCT_H_
17
18
19 #include "entity.h"
20
21
22 /* Aufbau der interprozeduralen Darstellung.  In den Call-Operationen
23  * muessen alle potentiellen callees gespeichert sein. */
24 void cg_construct(int arr_len, entity *free_methods_arr[]);
25
26
27 /* Abbau der interprozeduralen (Sichten-) Darstellung, in eine
28  * gewoehnliche intraprozedurale Darstellung */
29 void cg_destruct(void);
30
31
32 #endif /* _CONSTRUCT_H_ */