X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbespilloptions.h;h=14baab4806a4764771e00d70d0ce20055e2d9522;hb=9276447aec4972df060349e162f583c4898dfec8;hp=986ba1f9773d0b43ec43404cfe3a47039a87b268;hpb=4d5c3365a58cba59993045a9e08e686d8ae079a7;p=libfirm diff --git a/ir/be/bespilloptions.h b/ir/be/bespilloptions.h index 986ba1f97..14baab480 100644 --- a/ir/be/bespilloptions.h +++ b/ir/be/bespilloptions.h @@ -17,25 +17,27 @@ * PURPOSE. */ -/* - * Author: Matthias Braun - * Date: 12.10.2006 - * Copyright: (c) Universitaet Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. +/** + * @file + * @brief Option handling for spiller. + * @author Matthias Braun + * @date 12.10.2006 + * @version $Id$ */ -#ifndef BESPILL_OPTIONS_H_ -#define BESPILL_OPTIONS_H_ +#ifndef FIRM_BE_BESPILL_OPTIONS_H +#define FIRM_BE_BESPILL_OPTIONS_H -#include "bechordal.h" +#include "bearch.h" +#include "beirg.h" extern int be_coalesce_spill_slots; extern int be_do_remats; typedef struct be_spiller_t { - void (*spill) (be_irg_t *birg, const arch_register_class_t* cls); + void (*spill) (be_irg_t *birg, const arch_register_class_t *cls); } be_spiller_t; void be_register_spiller(const char *name, be_spiller_t *spiller); -void be_do_spill(be_irg_t *birg, const arch_register_class_t* cls); +void be_do_spill(be_irg_t *birg, const arch_register_class_t *cls); -#endif +#endif /* FIRM_BE_BESPILL_OPTIONS_H */