summaryrefslogtreecommitdiffstats
path: root/test/Lexer/counter.c
blob: 9b2c2c7434f432c3fe8bba01960dac2a6277fbc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// __COUNTER__ support: rdar://4329310
// RUN: clang -E %s > %t &&

#define PASTE2(x,y) x##y
#define PASTE1(x,y) PASTE2(x,y)
#define UNIQUE(x) PASTE1(x,__COUNTER__)

// RUN: grep "A: 0" %t &&
A: __COUNTER__

// RUN: grep "B: foo1" %t &&
B: UNIQUE(foo);
// RUN: grep "C: foo2" %t &&
C: UNIQUE(foo);
// RUN: grep "D: 3" %t
D: __COUNTER__
OpenPOWER on IntegriCloud