removed uncommented visibility flag: is commented in
authorGötz Lindenmaier <goetz@ipd.info.uni-karlsruhe.de>
Thu, 16 Jun 2005 12:13:41 +0000 (12:13 +0000)
committerGötz Lindenmaier <goetz@ipd.info.uni-karlsruhe.de>
Thu, 16 Jun 2005 12:13:41 +0000 (12:13 +0000)
by stupid script that removes preprocessor macros.

[r6026]

ir/tr/entity.h

index 227269d..c2ac20a 100644 (file)
@@ -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);