Bugfixes
[libfirm] / ir / ana2 / pto_util.h
1 /* -*- c -*- */
2
3 /*
4    Project:     libFIRM
5    File name:   ir/ana/pto_util.h
6    Purpose:     Utilitites for PTO
7    Author:      Florian
8    Modified by:
9    Created:     Sat Nov 13 19:35:27 CET 2004
10    CVS-ID:      $Id$
11    Copyright:   (c) 1999-2004 Universität Karlsruhe
12    Licence:     This file is protected by the GPL -  GNU GENERAL PUBLIC LICENSE.
13 */
14
15
16 # ifndef _PTO_UTIL_
17 # define _PTO_UTIL_
18
19 # include "irnode.h"
20 # include "entity.h"
21
22 /* ===================================================
23    Global Defines:
24    =================================================== */
25
26 /* ===================================================
27  Global Data Types:
28  =================================================== */
29
30 /* ===================================================
31    Global Prototypes:
32    =================================================== */
33 /* Get the entity of a ptr */
34 entity *get_ptr_ent (ir_node*);
35
36 /* Find the arguments of a graph. For a method that has n args, the
37   result array has 'n+1' entries, the last of which is written NULL. */
38 ir_node **find_irg_args (ir_graph*);
39
40 /* ===================================================
41    Global Variables:
42    =================================================== */
43
44
45 # endif /* not defined _PTO_UTIL_ */
46
47
48 \f
49 /*
50   $Log$
51   Revision 1.5  2004/11/24 14:53:56  liekweg
52   Bugfixes
53
54   Revision 1.4  2004/11/18 16:37:07  liekweg
55   rewrite
56
57
58 */