be: Pass ir_graph* instead of ir_node* to allocate_reg_req().
[libfirm] / ir / adt / hungarian.c
index 3b34318..d1f49be 100644 (file)
@@ -27,7 +27,6 @@
 /**
  * @file
  * @brief   Solving the Minimum Assignment Problem using the Hungarian Method.
- * @version $Id$
  */
 #include "config.h"
 
@@ -35,7 +34,7 @@
 #include <stdlib.h>
 #include <assert.h>
 
-#include "irtools.h"
+#include "util.h"
 #include "xmalloc.h"
 #include "debug.h"
 #include "bitset.h"
@@ -129,7 +128,7 @@ void hungarian_prepare_cost_matrix(hungarian_problem_t *p,
        } else if (mode == HUNGARIAN_MODE_MINIMIZE_COST) {
                /* nothing to do */
        } else {
-               panic("Unknown hungarian problem mode\n");
+               panic("Unknown hungarian problem mode");
        }
 }