removed debug output
[libfirm] / testprograms / if_while_example.c
index dddb2d2..63ace9d 100644 (file)
 # 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; }