Added counters for inlining
[libfirm] / testprograms / dead_block_example.c
index 7493d7c..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;