X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeblocksched.h;h=460a0a860f482d0dcafcfaafbfeae7bb05acd786;hb=9dbd3483c36950b2fa92ff191d6f19153696105a;hp=50260752231cccd8d445262f2f5057ca7d394ba8;hpb=4d5c3365a58cba59993045a9e08e686d8ae079a7;p=libfirm diff --git a/ir/be/beblocksched.h b/ir/be/beblocksched.h index 502607522..460a0a860 100644 --- a/ir/be/beblocksched.h +++ b/ir/be/beblocksched.h @@ -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. * @@ -17,21 +17,18 @@ * PURPOSE. */ -/* - * Block schedule calculator - * - * $Id$ +/** + * @file + * @brief Block schedule calculation. + * @author Matthias Braun, Christoph Mallon + * @date 27.09.2006 + * @version $Id$ */ -#ifndef _BEBLOCKSCHED_H -#define _BEBLOCKSCHED_H - -#include "firm_config.h" +#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