Retro68/gcc/libgomp/testsuite/libgomp.c-c++-common/for-1.h
Wolfgang Thaller 6fbf4226da gcc-9.1
2019-06-20 20:10:10 +02:00

26 lines
458 B
C

#define S
#define N(x) M(x, G, static)
#include "for-2.h"
#undef S
#undef N
#define S schedule(static, 32)
#define N(x) M(x, G, static32)
#include "for-2.h"
#undef S
#undef N
#define S schedule(auto)
#define N(x) M(x, G, auto)
#include "for-2.h"
#undef S
#undef N
#define S schedule(guided, 32)
#define N(x) M(x, G, guided32)
#include "for-2.h"
#undef S
#undef N
#define S schedule(runtime)
#define N(x) M(x, G, runtime)
#include "for-2.h"
#undef S
#undef N