becopyilp: Do not advertise the switch to dump the solution, because this is not...
[libfirm] / ir / be / beblocksched.h
index 1e7d9f6..b5fa577 100644 (file)
@@ -1,18 +1,19 @@
 /*
- * Block schedule calculator
- *
- * $Id$
+ * This file is part of libFirm.
+ * Copyright (C) 2012 University of Karlsruhe.
  */
-#ifndef _BEBLOCKSCHED_H
-#define _BEBLOCKSCHED_H
 
-#include "firm_config.h"
+/**
+ * @file
+ * @brief       Block schedule calculation.
+ * @author      Matthias Braun, Christoph Mallon
+ * @date        27.09.2006
+ */
+#ifndef FIRM_BE_BEBLOCKSCHED_H
+#define FIRM_BE_BEBLOCKSCHED_H
 
-#include "obst.h"
-#include "execfreq.h"
-#include "irnode.h"
-#include "irgraph.h"
+#include "firm_types.h"
 
-ir_node **be_create_block_schedule(ir_graph *irg, ir_exec_freq *execfreqs);
+ir_node **be_create_block_schedule(ir_graph *irg);
 
-#endif /* _BEBLOCKSCHED_H */
+#endif