X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fia32%2Fia32_finish.h;h=fb3b18bfdc867666a7468ef945e835ef4f05dff2;hb=82eea1b6b7887bdc834affa49038734e42012395;hp=93a430647a2e8d05191ba15e2f780f9388c1e1fa;hpb=4d5c3365a58cba59993045a9e08e686d8ae079a7;p=libfirm diff --git a/ir/be/ia32/ia32_finish.h b/ir/be/ia32/ia32_finish.h index 93a430647..fb3b18bfd 100644 --- a/ir/be/ia32/ia32_finish.h +++ b/ir/be/ia32/ia32_finish.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. * @@ -18,19 +18,23 @@ */ /** - * Function prototypes for irg finishing. - * @author Christian Wuerdig - * $Id$ + * @file + * @brief This file implements functions to finalize the irg for emit. + * @author Christian Wuerdig */ +#ifndef FIRM_BE_IA32_IA32_FINISH_H +#define FIRM_BE_IA32_IA32_FINISH_H -#ifndef _IA32_FINISH_H_ -#define _IA32_FINISH_H_ +#include "irgraph.h" +#include "bearch_ia32_t.h" /** - * Check 2-Addesscode constraints and call peephole optimizations. + * Check 2-Addresscode constraints and call peephole optimizations. * @param irg The irg to finish - * @param cg The codegenerator object for the irg */ -void ia32_finish_irg(ir_graph *irg, ia32_code_gen_t *cg); +void ia32_finish_irg(ir_graph *irg); -#endif /* _IA32_FINISH_H_ */ +/** Initialize the finisher. */ +void ia32_init_finish(void); + +#endif