Remove redundant be_set_transformed_node() in transformer functions. They are vestig...
[libfirm] / ir / be / mips / mips_map_regs.c
index ddfb67b..bd014e7 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.
  *
  */
 
 /**
- * Register mapping for firm nodes. Stolen from bearch_firm :)
- * $Id$
+ * @file
+ * @brief   Register mapping for firm nodes. Stolen from bearch_firm :)
+ * @author  Matthias Braun, Mehdi
+ * @version $Id$
  */
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -37,9 +39,10 @@ struct mips_irn_reg_assoc {
        const arch_register_t *reg;
 };
 
-int mips_cmp_irn_reg_assoc(const void *a, const void *b, size_t len) {
+int mips_cmp_irn_reg_assoc(const void *a, const void *b, size_t size) {
        const struct mips_irn_reg_assoc *x = a;
        const struct mips_irn_reg_assoc *y = b;
+       (void) size;
 
        return x->irn != y->irn;
 }