From b07ec8c98f79e2f8404c47f769cddf4062fc18a5 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Tue, 27 Dec 2005 17:13:55 +0000 Subject: [PATCH] includes firm_types.h now [r7152] --- ir/tr/type_or_entity.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ir/tr/type_or_entity.h b/ir/tr/type_or_entity.h index 3e9ac148f..54de00b87 100644 --- a/ir/tr/type_or_entity.h +++ b/ir/tr/type_or_entity.h @@ -21,10 +21,12 @@ # ifndef _TYPE_OR_ENTITY_H_ # define _TYPE_OR_ENTITY_H_ -/** A datatype to treat types and entities as the same. */ +#include "firm_types.h" + +/** A data type to treat types and entities as the same. */ typedef union { - struct type *typ; /**< points to a type */ - struct entity *ent; /**< points to an entity */ + ir_type *typ; /**< points to a type */ + entity *ent; /**< points to an entity */ } type_or_ent; -- 2.20.1