Updated header
[libfirm] / ir / ana2 / irmemwalk.h
1 /* -*- c -*- */
2
3 /*
4  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
5  *
6  * This file is part of libFirm.
7  *
8  * This file may be distributed and/or modified under the terms of the
9  * GNU General Public License version 2 as published by the Free Software
10  * Foundation and appearing in the file LICENSE.GPL included in the
11  * packaging of this file.
12  *
13  * Licensees holding valid libFirm Professional Edition licenses may use
14  * this file in accordance with the libFirm Commercial License.
15  * Agreement provided with the Software.
16  *
17  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
18  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19  * PURPOSE.
20  */
21
22 /**
23  * @file
24  * @brief    walk along memory edges
25  * @author   Florian
26  * @date     Mon 18 Oct 2004
27  * @version  $Id$
28  */
29 # ifndef FIRM_ANA2_IRMEMWALK_H
30 # define FIRM_ANA2_IRMEMWALK_H
31
32 # include "irgraph.h"
33 # include "irgwalk.h"
34
35 void irg_walk_mem (ir_graph*, irg_walk_func*, irg_walk_func*, void*);
36 int get_irg_is_mem_visited (ir_graph*);
37
38 # endif
39
40 \f
41 /*
42   $Log$
43   Revision 1.1  2004/10/21 11:09:37  liekweg
44   Moved memwalk stuf into irmemwalk
45   Moved lset stuff into lset
46   Moved typalise stuff into typalise
47
48
49  */