- BugFix: a - a is NOT 0 for NaN's
[libfirm] / ir / debug / firm_ycomp.c
index 626de14..a451bfd 100644 (file)
@@ -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.
  *
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/debug/firm_ycomp.c
- * Purpose:     Connect firm to ycomp
- * Author:      Christian Wuerdig
- * Modified by:
- * Created:     16.11.2006
- * CVS-ID:      $Id$
- * Copyright:   (c) 2001-2006 Universität Karlsruhe
+/**
+ * @file
+ * @brief      Connect firm to ycomp
+ * @author     Christian Wuerdig
+ * @date       16.11.2006
+ * @version    $Id$
  */
-#ifdef HAVE_CONFIG_H
 #include "config.h"
-#endif /* HAVE_CONFIG_H */
 
 #include "assert.h"
 #include "irhooks.h"
@@ -146,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);
@@ -196,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);
 
@@ -227,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;
 
@@ -314,9 +309,12 @@ static void firm_ycomp_debug_new_node(void *context, ir_graph *graph, ir_node *n
 /**
  * Clear the old irg if it has some data and create a new one.
  */
-static void firm_ycomp_debug_new_irg(void *context, ir_graph *irg, ir_entity *ent) {
+static void firm_ycomp_debug_new_irg(void *context, ir_graph *irg,
+                                     ir_entity *ent)
+{
        firm_ycomp_dbg_t *dbg = context;
        char             buf[SEND_BUF_SIZE];
+       (void) irg;
 
        if (yy_dbg.has_data) {
                send_cmd(dbg, "deleteGraph\n");
@@ -513,6 +511,7 @@ static void firm_ycomp_debug_turn_into_id(void *context, ir_node *old_node) {
  */
 static void firm_ycomp_debug_dead_node_elim(void *context, ir_graph *irg, int start) {
        firm_ycomp_dbg_t *dbg  = context;
+       (void) irg;
        dbg->in_dead_node_elim = start != 0;
 }