X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=testprograms%2Firr_cf_example.c;h=c85b2b360f72db743b14a2bf2aa1d494ce9391eb;hb=95730664ee5ec63be34b1142222b6704300666f5;hp=722230874065ca7c8d2b11972e506d24a48883de;hpb=8a828c064c24643f30d68b67808a62e8a7ae1d80;p=libfirm diff --git a/testprograms/irr_cf_example.c b/testprograms/irr_cf_example.c index 722230874..c85b2b360 100644 --- a/testprograms/irr_cf_example.c +++ b/testprograms/irr_cf_example.c @@ -1,10 +1,14 @@ -/* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe -* All rights reserved. -* -* Authors: Christian Schaefer, Goetz Lindenmaier -* -* testprogram. -*/ +/* + * Project: libFIRM + * File name: testprograms/irr_cf_example.c + * Purpose: Test Phi construction with irregular control flow. + * Author: Christian Schaefer, Goetz Lindenmaier + * Modified by: + * Created: + * CVS-ID: $Id$ + * Copyright: (c) 1999-2003 Universität Karlsruhe + * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + */ # include # include @@ -13,9 +17,6 @@ # include "irdump.h" # include "firm.h" -/* - * irregular control flow - */ /** * This file constructs a control flow of following shape: @@ -56,7 +57,7 @@ int main(int argc, char **argv) printf("\nCreating an IR graph: IRR_CF...\n"); /* init library */ - init_firm (); + init_firm (NULL); set_opt_constant_folding(0); /* so that stupid test are not evaluated. */ /* FIRM was designed for oo languages where all methods belong to a class. @@ -82,9 +83,9 @@ int main(int argc, char **argv) irg = new_ir_graph (ent, NUM_OF_LOCAL_VARS); /* two make two conditionals that represent a switch */ - expr = new_Const (mode_Is, tarval_from_long (mode_Is, 0)); - c1 = new_Const (mode_Is, tarval_from_long (mode_Is, 1)); - c2 = new_Const (mode_Is, tarval_from_long (mode_Is, 2)); + expr = new_Const (mode_Is, new_tarval_from_long (0, mode_Is)); + c1 = new_Const (mode_Is, new_tarval_from_long (1, mode_Is)); + c2 = new_Const (mode_Is, new_tarval_from_long (2, mode_Is)); cond = new_Cond(new_Proj(new_Cmp(expr, c1), mode_b, Eq)); f = new_Proj(cond, mode_X, 0); @@ -117,10 +118,9 @@ int main(int argc, char **argv) new_immBlock(); add_in_edge(get_irg_current_block(irg), t); add_in_edge(get_irg_current_block(irg), jmp); - { - ir_node *in[0]; /* this is the array containing the return parameters */ - x = new_Return (get_store(), 0, in); - } + + x = new_Return (get_store(), 0, NULL); + mature_block (get_irg_current_block(irg)); add_in_edge (get_irg_end_block(irg), x);