blob: 4c5012d68baf64681a1909a1b72bf6f834c016e4 [file] [log] [blame]
Douglas Gregor2cf26342009-04-09 22:27:44 +00001// RUN: clang-cc -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.
Douglas Gregor2cf26342009-04-09 22:27:44 +00003extern float y;
Douglas Gregor14f79002009-04-10 03:52:48 +00004extern int *ip, x;
5
Douglas Gregor2cf26342009-04-09 22:27:44 +00006float z;
Douglas Gregor14f79002009-04-10 03:52:48 +00007
8
9
10#define MAKE_HAPPY(X) X##Happy
11int MAKE_HAPPY(Very);
12