X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Ftr%2Ftypewalk.h;h=a85517e9c3a7c7b24c2d898f059688ff3f39d576;hb=f64411a2a8a4e28e70a281ac67736a1bdf996b72;hp=589eaec4570ef109c4070b797af0d3bd57c8e3d9;hpb=39cf7372c98d61844be2fcd391f4050df1df6758;p=libfirm diff --git a/ir/tr/typewalk.h b/ir/tr/typewalk.h index 589eaec45..a85517e9c 100644 --- a/ir/tr/typewalk.h +++ b/ir/tr/typewalk.h @@ -57,9 +57,9 @@ void type_walk(type_walk_func *pre, type_walk_func *post, void *env); * type walk at the irgs entity, the irgs frame type and all types and * entities that are attributes to firm nodes. */ void type_walk_irg(ir_graph *irg, - type_walk_func *pre, - type_walk_func *post, - void *env); + type_walk_func *pre, + type_walk_func *post, + void *env); /** Touches every class in specified order: @@ -73,8 +73,8 @@ void type_walk_irg(ir_graph *irg, @deprecated will be removed? */ void type_walk_super2sub(type_walk_func *pre, - type_walk_func *post, - void *env); + type_walk_func *post, + void *env); /** Walker for class types in inheritance order. * @@ -89,8 +89,8 @@ void type_walk_super2sub(type_walk_func *pre, * * The arguments pre, post, env may be NULL. */ void type_walk_super(type_walk_func *pre, - type_walk_func *post, - void *env); + type_walk_func *post, + void *env); /** Same as type_walk_super2sub, but visits only class types. Executes pre for a class if all superclasses have been visited. @@ -101,8 +101,8 @@ void type_walk_super(type_walk_func *pre, @bug ?? something is wrong with this. */ void class_walk_super2sub(class_walk_func *pre, - class_walk_func *post, - void *env); + class_walk_func *post, + void *env); /** * the entity walk function. A function type for entity walkers. @@ -120,7 +120,7 @@ typedef void entity_walk_func(entity *ent, void *env); * @param env environment, will be passed to the walker function */ void walk_types_entities(type *tp, - entity_walk_func *doit, - void *env); + entity_walk_func *doit, + void *env); #endif /* _TYPEWALK_H_ */