From df004c29b4ed940ff11e8468b7966cd98fc75c63 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Tue, 10 Apr 2007 10:05:07 +0000 Subject: [PATCH] added ir_region and ir_reg_tree [r12687] --- ir/common/firm_types.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/ir/common/firm_types.h b/ir/common/firm_types.h index e0cbb0709..2afd4056f 100644 --- a/ir/common/firm_types.h +++ b/ir/common/firm_types.h @@ -77,6 +77,16 @@ typedef struct ir_graph ir_graph, *ir_graph_ptr; typedef struct ir_loop ir_loop, *ir_loop_ptr; #endif +#ifndef _IR_REGION_TYPEDEF_ +#define _IR_REGION_TYPEDEF_ +typedef struct ir_region ir_region, *ir_region_ptr; +#endif + +#ifndef _IR_REG_TREE_TYPEDEF_ +#define _IR_REG_TREE_TYPEDEF_ +typedef struct ir_reg_tree ir_reg_tree, *ir_reg_tree_ptr; +#endif + #ifndef _ENTITY_TYPEDEF_ #define _ENTITY_TYPEDEF_ typedef struct ir_entity ir_entity, *ir_entity_ptr; @@ -87,6 +97,11 @@ typedef struct ir_entity ir_entity, *ir_entity_ptr; typedef struct compound_graph_path compound_graph_path, *ir_compound_graph_path_ptr; #endif +#ifndef _IR_PHASE_TYPEDEF_ +#define _IR_PHASE_TYPEDEF_ +typedef struct _ir_phase ir_phase, *ir_phase_ptr; +#endif + #ifndef _IR_EXTBB_TYPEDEF_ #define _IR_EXTBB_TYPEDEF_ typedef struct _ir_extblk ir_extblk, *ir_extblk_ptr; -- 2.20.1