X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeblocksched.h;h=b5fa577d20dbf7e42048ab6a190ff6796e0b7bb3;hb=0ac0b440ce2d239c5e7e7db56b8273559d9a7741;hp=1e7d9f6657e9f215ca4ea2896fa545b9fcdb73aa;hpb=da48a7f7266cfe6274fc4d159d63bba245724222;p=libfirm diff --git a/ir/be/beblocksched.h b/ir/be/beblocksched.h index 1e7d9f665..b5fa577d2 100644 --- a/ir/be/beblocksched.h +++ b/ir/be/beblocksched.h @@ -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