Initial revision
[libfirm] / ir / tr / type_or_entity.h
1 /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
2
3 ** All rights reserved.
4 **
5 ** Author: Goetz Lindenmaier
6 **
7 */
8
9 /* A datatype to treat types and entities as the same. */
10
11 # ifndef _TYPE_OR_ENTITY_H_
12 # define _TYPE_OR_ENTITY_H_
13
14 typedef union {
15   type *typ;
16   entity *ent;
17 } type_or_ent;
18
19
20 # endif /* _TYPE_OR_ENTITY_H_ */