X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=testprograms%2Fif_while_example.c;h=63ace9d60b8bb63e7c41d44a5ca91d08243db5cf;hb=94bbcab3411b7f309d30759258697f207509273c;hp=abb1fc76af89c89ce72a14ad789aadd852d1f929;hpb=13588bfa29b57530c70851264dd5ea05184b9486;p=libfirm diff --git a/testprograms/if_while_example.c b/testprograms/if_while_example.c index abb1fc76a..63ace9d60 100644 --- a/testprograms/if_while_example.c +++ b/testprograms/if_while_example.c @@ -1,10 +1,15 @@ -/* (C) 1998 - 2000 by Universitaet Karlsruhe -* All rights reserved. -* -* Authors: Christian Schaefer, Goetz Lindenmaier -* -* testprogram. -*/ +/* + * Project: libFIRM + * File name: testprograms/if_while_example.c + * Purpose: Shows more complex 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 @@ -12,14 +17,15 @@ # include "irvrfy.h" # include "irdump.h" # include "firm.h" +# include "irouts.h" /** * This file constructs the ir for the following pseudo-program: * * main() { -* int a = 0; // pos 0 -* int b = 1; // pos 1 -* int h; // pos 2 +* int a = 0; // pos 0 +* int b = 1; // pos 1 +* int h; // pos 2 * * if (0 == 0) * { a = 2; }