be_abi_put_ignore_regs returns now number of ignore registers as unsigned
[libfirm] / ir / be / belower.c
index 9d665f8..a02a73c 100644 (file)
  */
 
 /**
- * Author:      Christian Wuerdig
- * Date:        2005/12/14
- * Copyright:   (c) Universitaet Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
- * CVS-Id:      $Id$
- *
- * Performs lowering of perm nodes and spill/reload optimization.
+ * @file
+ * @brief       Performs lowering of perm nodes. Inserts copies to assure register constraints.
+ * @author      Christian Wuerdig
+ * @date        14.12.2005
+ * @version     $Id$
  */
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #include "debug.h"
 #include "irhooks.h"
 #include "xmalloc.h"
+#include "irnodeset.h"
+#include "irgmod.h"
+#include "iredges_t.h"
+#include "irgwalk.h"
 
 #include "bearch_t.h"
 #include "belower.h"
 #include "besched_t.h"
 #include "bestat.h"
 #include "bessaconstr.h"
-#include "irnodeset.h"
-
-#include "irgmod.h"
-#include "iredges_t.h"
-#include "irgwalk.h"
+#include "benodesets.h"
 
 #undef KEEP_ALIVE_COPYKEEP_HACK
 
@@ -99,6 +97,7 @@ typedef struct _perm_cycle_t {
        perm_type_t             type;        /**< type (CHAIN or CYCLE) */
 } perm_cycle_t;
 
+//
 /* Compare the two operands */
 static int cmp_op_copy_assoc(const void *a, const void *b) {
        const op_copy_assoc_t *op1 = a;