removed entity_visited flag - use type_visited instead
[libfirm] / ir / tr / type.h
index 2b5ba80..6765a65 100644 (file)
@@ -361,11 +361,12 @@ void    remove_class_supertype(type *clss, type *supertype);
 typedef enum peculiarity {
   description,     /* Represents only a description.  The entity/type is never
                      allocated, no code/data exists for this entity/type. */
-  inherited,       /* Describes explicitly that other entities are inherited
-                         to the owner of this entity.  Overwrites must refer to
-                         at least one other entity.  If this is a method entity
-                         there exists no irg for this entity, only for one of
-                         the overwritten ones. */
+  inherited,       /* Describes explicitly that other entities are
+                     inherited to the owner of this entity.
+                     Overwrites must refer to at least one other
+                     entity.  If this is a method entity there exists
+                     no irg for this entity, only for one of the
+                     overwritten ones. */
   existent         /* The entity/type (can) exist. */
 } peculiarity;