X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=testprograms%2Fif_while_example.c;h=7cfaa96cbadf213ac2996ddf42a4e95e9083d259;hb=3ae5692990249ceae26a1c7517f2c658c493bb0d;hp=433758c8364573282e18f003742c08f2888735fb;hpb=2cd57a8b25d2cf8c34a1ee05bc2198a57ffdc0fc;p=libfirm diff --git a/testprograms/if_while_example.c b/testprograms/if_while_example.c index 433758c83..7cfaa96cb 100644 --- a/testprograms/if_while_example.c +++ b/testprograms/if_while_example.c @@ -44,9 +44,9 @@ int main(void) { ir_graph *irg; - type *owner; - type *proc_main; - type *prim_t_int; + ir_type *owner; + ir_type *proc_main; + ir_type *prim_t_int; entity *ent; ir_node *b, *x, *r, *t, *f; @@ -95,8 +95,8 @@ main(void) /* generate a block for the loop header and the conditional branch */ r = new_immBlock (); add_immBlock_pred (r, x); - x = new_Cond (new_Proj(new_Cmp(new_Const (mode_Iu, new_tarval_from_long (0, mode_Is)), - new_Const (mode_Iu, new_tarval_from_long (0, mode_Is))), + x = new_Cond (new_Proj(new_Cmp(new_Const (mode_Iu, new_tarval_from_long (0, mode_Iu)), + new_Const (mode_Iu, new_tarval_from_long (0, mode_Iu))), mode_b, pn_Cmp_Eq)); f = new_Proj (x, mode_X, 0); t = new_Proj (x, mode_X, 1); @@ -139,7 +139,7 @@ main(void) local_optimize_graph(irg); dead_node_elimination(irg); - compute_outs(irg); + compute_irg_outs(irg); /* verify the graph */ irg_vrfy(irg);