Daily bump.
[official-gcc.git] / libgomp / testsuite / libgomp.c / for-1.c
blob942c8e7b821e9fef60280b1168798aafc203acfe
1 /* { dg-additional-options "-std=gnu99" } */
3 extern void abort (void);
5 #define M(x, y, z) O(x, y, z)
6 #define O(x, y, z) x ## _ ## y ## _ ## z
8 #define F parallel for
9 #define G pf
10 #include "for-1.h"
11 #undef F
12 #undef G
14 #define F for
15 #define G f
16 #include "for-1.h"
17 #undef F
18 #undef G
20 int
21 main ()
23 if (test_pf_static ()
24 || test_pf_static32 ()
25 || test_pf_auto ()
26 || test_pf_guided32 ()
27 || test_pf_runtime ()
28 || test_f_static ()
29 || test_f_static32 ()
30 || test_f_auto ()
31 || test_f_guided32 ()
32 || test_f_runtime ())
33 abort ();
34 return 0;