changed file names and name prefix
[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 /* $Id$ */
15
16 #ifdef HAVE_CONFIG_H
17 # include <config.h>
18 #endif
19
20 #include "debinfo.h"
21
22 inline void
23 deb_info_copy(ir_node *new, ir_node *old, ident *info) {
24 }
25
26 inline void
27 deb_info_merge(ir_node **new_nodes, ir_node **old_nodes, ident *info) {
28 }