From: Götz Lindenmaier Date: Mon, 3 May 2004 09:31:18 +0000 (+0000) Subject: repaired removed C++ comments X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=30f938dc7386339f50e16be79a630e66211ad3f0;p=libfirm repaired removed C++ comments [r2841] --- diff --git a/testprograms/endless_loop.c b/testprograms/endless_loop.c index 4410e195d..50c515885 100644 --- a/testprograms/endless_loop.c +++ b/testprograms/endless_loop.c @@ -24,9 +24,9 @@ * * VAR_A is some extern variable. * -* main(int a) { /* pos 0 */ -* int b = 1; /* pos 1 */ -* int h; /* pos 2 */ +* main(int a) { /* pos 0 * +* int b = 1; /* pos 1 * +* int h; /* pos 2 * * * while (0 == 0) loop { * h = a; diff --git a/testprograms/if_while_example.c b/testprograms/if_while_example.c index 63a6f3005..420e51554 100644 --- a/testprograms/if_while_example.c +++ b/testprograms/if_while_example.c @@ -23,9 +23,9 @@ * 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; } diff --git a/testprograms/three_cfpred_example.c b/testprograms/three_cfpred_example.c index 9c6ae8280..177c2d792 100644 --- a/testprograms/three_cfpred_example.c +++ b/testprograms/three_cfpred_example.c @@ -40,9 +40,9 @@ * 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; diff --git a/testprograms/while_example.c b/testprograms/while_example.c index fa8c01206..d01e755d6 100644 --- a/testprograms/while_example.c +++ b/testprograms/while_example.c @@ -21,9 +21,9 @@ /** * This file constructs the ir for the following pseudo-program: * -* main(int a) { /* pos 0 */ -* int b = 1; /* pos 1 */ -* int h; /* pos 2 */ +* main(int a) { /* pos 0 * +* int b = 1; /* pos 1 * +* int h; /* pos 2 * * * while (0 == 2) loop { * h = a;