summaryrefslogtreecommitdiffstats
path: root/test/PCH/format-strings.c
blob: 7198c4d3a2638c3f8a25aa641528311e01857d97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: %clang_cc1 -D FOOBAR="\"\"" %s -emit-pch -o %t.pch
// RUN: %clang_cc1 -D FOOBAR="\"\"" %s -include-pch %t.pch

// rdar://11418366

#ifndef HEADER
#define HEADER

extern int printf(const char *restrict, ...);
#define LOG printf(FOOBAR "%f", __LINE__)

#else

void foo() {
  LOG;
}

#endif