more headers
[libfirm] / testprograms / dead_block_example.c
index 5a4d040..77a20cd 100644 (file)
@@ -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/dead_block_example.c
+ * Purpose:     Test unreachable code elimination.
+ * 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 <stdio.h>
 # include <string.h>
 *       |/_     _\|
 *     Block1    Block2   deadBlock
 *        \       |       /
-*          \      |      /
-*          _\|   \ /   |/_
+*       \      |      /
+*       _\|   \ /   |/_
 *            nextBlock
 *
 *
 *   This is a program as, e.g.,
 *
 *   if () then
-*     { Jmp label1; } // happens anyways
+*     { Jmp label1; } /*  happens anyways  *
 *   else
-*     { Jmp label1; } // happens anyways
+*     { Jmp label1; } /*  happens anyways  *
 * label1:
 *   return();
 *   Jmp label1;
@@ -85,8 +89,8 @@ int main(int argc, char **argv)
   irg = new_ir_graph (ent, NUM_OF_LOCAL_VARS);
 
   /* to make a condition  */
-  c1 = new_Const (mode_Is, tarval_from_long (mode_Is, 1));
-  c2 = new_Const (mode_Is, tarval_from_long (mode_Is, 2));
+  c1 = new_Const (mode_Is, new_tarval_from_long (1, mode_Is));
+  c2 = new_Const (mode_Is, new_tarval_from_long (2, mode_Is));
   set_value(0, c2);
 
   cond = new_Cond(new_Proj(new_Cmp(c1, c2), mode_b, Eq));