X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Ftr%2Ftypegmod.h;h=3dcff60f4845aa324fe600bc77a8d9305c7fc257;hb=93ec9eb45d1630e73ed4932d66683adcc9c28d71;hp=bfdd7c22127288235c2ff3ea1e21efe14b3a3333;hpb=30b120caf1fbc6fcb13c6b3bef8f7132ebff72aa;p=libfirm diff --git a/ir/tr/typegmod.h b/ir/tr/typegmod.h index bfdd7c221..3dcff60f4 100644 --- a/ir/tr/typegmod.h +++ b/ir/tr/typegmod.h @@ -9,12 +9,10 @@ * Copyright: (c) 2001-2003 Universität Karlsruhe * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. */ +#ifndef _TYPEGMOD_H_ +#define _TYPEGMOD_H_ - -# ifndef _TYPEGMOD_H_ -# define _TYPEGMOD_H_ - -# include "type.h" +#include "firm_types.h" /** * @@ -36,7 +34,7 @@ * @param new_type - The new type that will replace old_type. * */ -void exchange_types(type *old_type, type *new_type); +void exchange_types(ir_type *old_type, ir_type *new_type); /** Skip id types until a useful type is reached. * @@ -46,6 +44,6 @@ void exchange_types(type *old_type, type *new_type); * tp if it is not an id type. * If tp is an id type returns the real type it stands for. */ -type *skip_tid(type *tp); +ir_type *skip_tid(ir_type *tp); -# endif /*_TYPEGMOD_H_ */ +#endif /*_TYPEGMOD_H_ */