X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Ftr%2Ftype_or_entity.h;h=3e9ac148f6d0fd97bfbc5b6c68db1bc440f4498f;hb=20c028dc2eefd23898ecff42a8fdf9e1eef7c90b;hp=94efc7b2132e85a9e765b478b1f4c71df1ac0ec4;hpb=e3e22fa6f927847099c0bff62457003aa81f2518;p=libfirm diff --git a/ir/tr/type_or_entity.h b/ir/tr/type_or_entity.h index 94efc7b21..3e9ac148f 100644 --- a/ir/tr/type_or_entity.h +++ b/ir/tr/type_or_entity.h @@ -1,21 +1,30 @@ -/* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe +/* + * Project: libFIRM + * File name: ir/tr/type_or_entity.h + * Purpose: Provides a datatype to treat types and entities as the same. + * Author: Goetz Lindenmaier + * Modified by: + * Created: + * CVS-ID: $Id$ + * Copyright: (c) 1999-2003 Universität Karlsruhe + * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + */ -** All rights reserved. -** -** Author: Goetz Lindenmaier -** -*/ - -/* $Id$ */ - -/* A datatype to treat types and entities as the same. */ +/** + * @file type_or_entity.h + * + * Provides a datatype to treat types and entities as the same. + * + * @author Goetz Lindenmaier + */ # ifndef _TYPE_OR_ENTITY_H_ # define _TYPE_OR_ENTITY_H_ +/** A datatype to treat types and entities as the same. */ typedef union { - type *typ; - entity *ent; + struct type *typ; /**< points to a type */ + struct entity *ent; /**< points to an entity */ } type_or_ent;