Mercurial > hg > CbC > CbC_llvm
view clang/test/Preprocessor/macro_fn_varargs_iso.c @ 176:de4ac79aef9d
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 17:13:11 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: %clang_cc1 -E %s | grep 'foo{a, b, c, d, e}' // RUN: %clang_cc1 -E %s | grep 'foo2{d, C, B}' // RUN: %clang_cc1 -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)