1 // RUN: %clang_cc1 -emit-pch -o variables.h.pch variables.h
2 // Do not mess with the whitespace in this file. It's important.
14 #define MAKE_HAPPY(X) X##Happy
17 #define A_MACRO_IN_THE_PCH 492
18 #define FUNCLIKE_MACRO(X, Y) X ## Y
20 #define PASTE2(x,y) x##y
21 #define PASTE1(x,y) PASTE2(x,y)
22 #define UNIQUE(x) PASTE1(x,__COUNTER__)