blob: c9374297fc02613a3c6a54ea3adde9c9fa451fa2 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-pch -o variables.h.pch variables.h
Douglas Gregor14f79002009-04-10 03:52:48 +00002// Do not mess with the whitespace in this file. It's important.
Chris Lattner285d03f2009-04-11 20:52:19 +00003
4
5
6
Douglas Gregor2cf26342009-04-09 22:27:44 +00007extern float y;
Douglas Gregor14f79002009-04-10 03:52:48 +00008extern int *ip, x;
9
Douglas Gregor2cf26342009-04-09 22:27:44 +000010float z;
Douglas Gregor14f79002009-04-10 03:52:48 +000011
Douglas Gregor0b748912009-04-14 21:18:50 +000012int z2 = 17;
Douglas Gregor14f79002009-04-10 03:52:48 +000013
14#define MAKE_HAPPY(X) X##Happy
15int MAKE_HAPPY(Very);
16
Chris Lattner531cc832009-04-10 22:13:17 +000017#define A_MACRO_IN_THE_PCH 492
Chris Lattner7356a312009-04-11 21:15:38 +000018#define FUNCLIKE_MACRO(X, Y) X ## Y
Chris Lattnerc1f9d822009-04-13 01:29:17 +000019
20#define PASTE2(x,y) x##y
21#define PASTE1(x,y) PASTE2(x,y)
22#define UNIQUE(x) PASTE1(x,__COUNTER__)
23
24int UNIQUE(a); // a0
25int UNIQUE(a); // a1
26