some fixes for xml dumper / still buggy.
[libfirm] / ir / debug / dbginfo_t.h
1 /*
2 *  Copyright (C) 2001 by Universitaet Karlsruhe
3 *  All rights reserved.
4 */
5
6 /**
7 * @file dbginfo_t.h
8 *
9 * @author Goetz Lindenmaier
10 *
11 *  dbginfo: This is a empty implementation of the Firm interface to
12 *  debugging support.  It only guarantees that the Firm library compiles
13 *  and runs without any real debugging support.
14 */
15
16 /* $Id$ */
17
18 #ifndef __DBGINFO_T_H__
19 #define __DBGINFO_T_H__
20
21 #include "dbginfo.h"
22
23 /**
24  * The current merge_pair_func(), access only from inside firm.
25  */
26 extern void (*__dbg_info_merge_pair)(ir_node *nw, ir_node *old,
27                                      dbg_action info);
28
29 /**
30  * The current merge_sets_func(), access only from inside firm.
31  */
32 extern void (*__dbg_info_merge_sets)(ir_node **new_nodes, int n_new_nodes,
33                                      ir_node **old_nodes, int n_old_nodes,
34                                      dbg_action info);
35
36 #endif /* __DBGINFO_T_H__ */