From: Michael Beck Date: Wed, 22 Dec 2004 10:54:28 +0000 (+0000) Subject: reduced size for isbe arrays X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=0810943151006884d2cad73c67b6210bbb082d80;p=libfirm reduced size for isbe arrays [r4716] --- diff --git a/ir/ir/irgraph_t.h b/ir/ir/irgraph_t.h index 252ffd6da..90af43e20 100644 --- a/ir/ir/irgraph_t.h +++ b/ir/ir/irgraph_t.h @@ -98,10 +98,10 @@ struct ir_graph { void *link; /**< A void* field to link any information to the node. */ - ir_graph **callers; /**< For callgraph analyses. */ - int *caller_isbe; /**< For callgraph analyses: set if backedge. */ - ir_graph **callees; /**< For callgraph analyses. */ - int *callee_isbe; /**< For callgraph analyses: set if backedge. */ + ir_graph **callers; /**< For callgraph analysis. */ + unsigned char *caller_isbe; /**< For callgraph analysis: set if backedge. */ + ir_graph **callees; /**< For callgraph analysis. */ + unsigned char *callee_isbe; /**< For callgraph analysis: set if backedge. */ int callgraph_loop_depth; int callgraph_recursion_depth; ir_loop *l;