A method for the irn label.
[libfirm] / testprograms / if_else_example.c
index b3ade18..4d98778 100644 (file)
 # include "firm.h"
 # include "irdump.h"
 
-/*
- * das leere FIRM Programm
- */
-
 /**
-*  This file constructs the ir for the following pseudo-program:
-*
-*  main() {
-*    int a = 0;
-*    int b = 1;
-*
-*    if (a > 2)
-*      { a = b; }
-*    else
-*      { b = 2; }
-*
-*    return a, b;
-**/
+ *  This file constructs the ir for the following pseudo-program:
+ *
+ *  main() {
+ *    int a = 0;
+ *    int b = 1;
+ *
+ *    if (a > 2)
+ *      { a = b; }
+ *    else
+ *      { b = 2; }
+ *
+ *    return a, b;
+ */
 
 int main(int argc, char **argv)
 {