X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fdebug%2Ffirm_ycomp.c;h=a451bfdfb56cad00a043370258828be37bbadb14;hb=b47d39bb3bc9194300e0fed4a0289c27930b41a1;hp=6bdbb58e9acd55392666e85a82b44d38a5a002cc;hpb=dbd130725ab2a2c93df940cc5e77ae9ca1e5a79b;p=libfirm diff --git a/ir/debug/firm_ycomp.c b/ir/debug/firm_ycomp.c index 6bdbb58e9..a451bfdfb 100644 --- a/ir/debug/firm_ycomp.c +++ b/ir/debug/firm_ycomp.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -24,9 +24,7 @@ * @date 16.11.2006 * @version $Id$ */ -#ifdef HAVE_CONFIG_H #include "config.h" -#endif /* HAVE_CONFIG_H */ #include "assert.h" #include "irhooks.h" @@ -143,7 +141,7 @@ static int cmp_nodes(const void *a, const void *b) { return n1->irn != n2->irn; } -static INLINE void send_cmd(firm_ycomp_dbg_t *dbg, const char *buf) { +static inline void send_cmd(firm_ycomp_dbg_t *dbg, const char *buf) { ssize_t res, len; len = strlen(buf); @@ -193,7 +191,7 @@ static void firm_ycomp_debug_init_realizer(firm_ycomp_dbg_t *dbg) { /** * Retrieve the appropriate realizer for given node. */ -static INLINE unsigned get_node_realizer(ir_node *node) { +static inline unsigned get_node_realizer(ir_node *node) { unsigned realizer; ir_opcode opc = get_irn_opcode(node); @@ -224,7 +222,7 @@ static INLINE unsigned get_node_realizer(ir_node *node) { /** * Retrieve the appropriate realizer for given edge. */ -static INLINE unsigned get_edge_realizer(ir_node *src, ir_node *tgt) { +static inline unsigned get_edge_realizer(ir_node *src, ir_node *tgt) { unsigned realizer; ir_mode *tgt_mode, *src_mode;