X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fmips%2Fbearch_mips.h;h=cce772cccd45c2ed166a5fd23198b5b778ab149d;hb=f37b4dbb329604edd67ff5877161cb5322e93020;hp=78345d6dc999ae7e970c835ae55267700f7a26a3;hpb=4d5c3365a58cba59993045a9e08e686d8ae079a7;p=libfirm diff --git a/ir/be/mips/bearch_mips.h b/ir/be/mips/bearch_mips.h index 78345d6dc..cce772ccc 100644 --- a/ir/be/mips/bearch_mips.h +++ b/ir/be/mips/bearch_mips.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,12 +17,18 @@ * PURPOSE. */ -#ifndef _BEARCH_MIPS_H_ -#define _BEARCH_MIPS_H_ +/** + * @file + * @brief declarations for the mips backend + * @author Matthias Braun, Mehdi + * @version $Id$ + */ +#ifndef FIRM_BE_MIPS_BEARCH_MIPS_H +#define FIRM_BE_MIPS_BEARCH_MIPS_H #include "../bearch_t.h" -typedef struct _mips_code_gen_t mips_code_gen_t; +typedef struct mips_code_gen_t mips_code_gen_t; extern const arch_isa_if_t mips_isa_if; @@ -38,4 +44,7 @@ void mips_set_block_sched_nr(ir_node *block, int nr); /** get a block schedule number */ int mips_get_block_sched_nr(ir_node *block); -#endif /* _BEARCH_MIPS_H_ */ +int mips_is_Load(const ir_node *node); +int mips_is_Store(const ir_node *node); + +#endif