summaryrefslogtreecommitdiffstats
path: root/test/Preprocessor/macro_fn_varargs_iso.c
blob: 78ad212405cf540b95d6136c37e71ba7eb63e883 (plain)
1
2
3
4
5
6
7
8
9
10
11

// RUN: clang-cc -E %s | grep 'foo{a, b, c, d, e}' &&
// RUN: clang-cc -E %s | grep 'foo2{d, C, B}' &&
// RUN: clang-cc -E %s | grep 'foo2{d,e, C, B}'

#define va1(...) foo{a, __VA_ARGS__, e}
va1(b, c, d)
#define va2(a, b, ...) foo2{__VA_ARGS__, b, a}
va2(B, C, d)
va2(B, C, d,e)

OpenPOWER on IntegriCloud