From 517a0cbda15f9cc570f8192728b103dc15779a93 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Fri, 19 May 2006 12:43:07 +0000 Subject: [PATCH] renamed parameter "super", cannot handled by crecoder tool [r7782] --- ir/tr/tr_inheritance.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/ir/tr/tr_inheritance.h b/ir/tr/tr_inheritance.h index ad127d56f..5395966b3 100644 --- a/ir/tr/tr_inheritance.h +++ b/ir/tr/tr_inheritance.h @@ -24,9 +24,8 @@ * * @see type.h entity.h */ - -#ifndef _TR_INHERITANCE_H_ -#define _TR_INHERITANCE_H_ +#ifndef _FIRM_TR_INHERITANCE_H_ +#define _FIRM_TR_INHERITANCE_H_ #include "firm_types.h" #include "type.h" @@ -88,16 +87,16 @@ entity *resolve_ent_polymorphy(ir_type *dynamic_class, entity* static_ent); * * Returns an ident that consists of the name of type followed by an * underscore and the name (not ld_name) of the entity. */ -ident *default_mangle_inherited_name(entity *super, ir_type *clss); +ident *default_mangle_inherited_name(entity *ent, ir_type *clss); /** Type of argument functions for inheritance resolver. * - * @param super The entity in the super type that will be overwritten + * @param ent The entity in the super type that will be overwritten * by the newly generated entity, for which this name is * used. * @param clss The class type in which the new entity will be placed. */ -typedef ident *mangle_inherited_name_func(entity *super, ir_type *clss); +typedef ident *mangle_inherited_name_func(entity *ent, ir_type *clss); /** Resolve implicit inheritance. * @@ -235,4 +234,4 @@ ir_class_cast_state get_irp_class_cast_state(void); * and firm verbosity is set. */ void verify_irg_class_cast_state(ir_graph *irg); -#endif /* _TR_INHERITANCE_H_ */ +#endif /* _FIRM_TR_INHERITANCE_H_ */ -- 2.20.1