summaryrefslogtreecommitdiffstats
path: root/test/Preprocessor/macro_rescan_varargs.c
blob: 6c6415a8ee5301e5db9a71bab6c542fa09039e11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s

#define LPAREN ( 
#define RPAREN ) 
#define F(x, y) x + y 
#define ELLIP_FUNC(...) __VA_ARGS__ 

1: ELLIP_FUNC(F, LPAREN, 'a', 'b', RPAREN); /* 1st invocation */ 
2: ELLIP_FUNC(F LPAREN 'a', 'b' RPAREN); /* 2nd invocation */ 

// CHECK: 1: F, (, 'a', 'b', );
// CHECK: 2: 'a' + 'b';