X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbespilloptions.h;h=576a1b97dad457d709a0c11596318dc29212e783;hb=93da909d12b7bec51aa36ee5f05966c331f90fb9;hp=d3cfc92347a2ece9714a4fcb96c97d62d95c9951;hpb=d6768d8d4427959eb045aafb1d15bd189beaa5dd;p=libfirm diff --git a/ir/be/bespilloptions.h b/ir/be/bespilloptions.h index d3cfc9234..576a1b97d 100644 --- a/ir/be/bespilloptions.h +++ b/ir/be/bespilloptions.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,14 +17,15 @@ * 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 "bearch.h" #include "beirg.h" @@ -33,10 +34,10 @@ 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