From: Götz Lindenmaier Date: Thu, 16 Jun 2005 12:13:41 +0000 (+0000) Subject: removed uncommented visibility flag: is commented in X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=c99b4a16bbb94ef84282176b4972ceba8168c560;p=libfirm removed uncommented visibility flag: is commented in by stupid script that removes preprocessor macros. [r6026] --- diff --git a/ir/tr/entity.h b/ir/tr/entity.h index 227269d2f..c2ac20a90 100644 --- a/ir/tr/entity.h +++ b/ir/tr/entity.h @@ -239,23 +239,6 @@ void set_entity_allocation (entity *ent, ent_allocation al); /** Return the name of the allocation type. */ const char *get_allocation_name(ent_allocation vis); -#if 0 // moved to type.h -/** - * This enumeration flags the visibility of entities. This is necessary - * for partial compilation. - */ -typedef enum { - visibility_local, /**< The entity is only visible locally. This is the default. */ - visibility_external_visible, /**< The entity is visible to other external program parts, but - it is defined here. It may not be optimized away. The entity must - be static_allocated. */ - visibility_external_allocated /**< The entity is defined and allocated externally. This compilation - must not allocate memory for this entity. The entity must - be static_allocated. This can also be an external defined - method. */ -} visibility; -#endif - /** Returns the visibility of an entity. */ visibility get_entity_visibility (const entity *ent);