7f077319bcd3441a483b3e7e816d055484897960
[libfirm] / ir / debug / debinfo.c
1 /*
2 **  Copyright (C) 2001 by Universitaet Karlsruhe
3 **  All rights reserved.
4 **
5 **  Authors: Goetz Lindenmaier
6 **
7 **  debinfo: This is a empty implementation of the Firm interface to
8 **  debugging support.  It only guarantees that the Firm library compiles
9 **  and runs without any real debugging support.
10 **  The functions herein are declared weak so that they can be overriden
11 **  by a real implementation.
12 */
13
14 #ifdef HAVE_CONFIG_H
15 # include <config.h>
16 #endif
17
18 #include "debinfo.h"
19
20 inline void
21 deb_info_copy(ir_node *new, ir_node *old, ident *info) {
22 }
23
24 inline void
25 deb_info_merge(ir_node **new_nodes, ir_node **old_nodes, ident *info) {
26 }