diff options
Diffstat (limited to 'test/external/metalang99/bench/many_call_in_arg_pos.c')
| -rw-r--r-- | test/external/metalang99/bench/many_call_in_arg_pos.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/external/metalang99/bench/many_call_in_arg_pos.c b/test/external/metalang99/bench/many_call_in_arg_pos.c new file mode 100644 index 0000000..712738f --- /dev/null +++ b/test/external/metalang99/bench/many_call_in_arg_pos.c @@ -0,0 +1,10 @@ +#include <metalang99.h> + +#define F_IMPL(x) v(x) + +#define CALL ML99_call(F, ML99_call(F, ML99_call(F, v(~~~~~)))) +#define _5 CALL, CALL, CALL, CALL, CALL +#define _10 _5, _5 +#define _100 _10, _10, _10, _10, _10, _10, _10, _10, _10, _10 + +ML99_EVAL(_100) |