X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firgraph.c;h=86e356ae2b0df593264fcd978634a7e38758b560;hb=c3c48d7bd83f042cc2951754377de928d66fe51e;hp=02d5e3ad1d47d0075fb584b59737ecbdb5ced0f7;hpb=4b48ab76a416dc7f55823fedc98a8b04907aaee3;p=libfirm diff --git a/ir/ir/irgraph.c b/ir/ir/irgraph.c index 02d5e3ad1..86e356ae2 100644 --- a/ir/ir/irgraph.c +++ b/ir/ir/irgraph.c @@ -74,7 +74,7 @@ new_ir_graph (entity *ent, int n_loc) res = (ir_graph *) malloc (sizeof (ir_graph)); memset(res, 0, sizeof (ir_graph)); - res->kind=k_ir_graph; + res->kind = k_ir_graph; /* inform statistics here, as blocks will be already build on this graph */ stat_new_graph(res, ent); @@ -98,7 +98,7 @@ new_ir_graph (entity *ent, int n_loc) } res->visited = 0; /* visited flag, for the ir walker */ - res->block_visited=0; /* visited flag, for the 'block'-walker */ + res->block_visited = 0; /* visited flag, for the 'block'-walker */ #if USE_EXPLICIT_PHI_IN_STACK res->Phi_in_stack = new_Phi_in_stack(); /* A stack needed for automatic Phi @@ -123,7 +123,7 @@ new_ir_graph (entity *ent, int n_loc) res->ent = ent; set_entity_irg(ent, res); - /*-- contain "inner" methods as in Pascal. --*/ + /*-- a class type so that it can contain "inner" methods as in Pascal. --*/ res->frame_type = new_type_class(mangle(get_entity_ident(ent), frame_type_suffix)); /* Remove type from type list. Must be treated differently than other types. */