blob: 7198c4d3a2638c3f8a25aa641528311e01857d97 [file] [log] [blame]
// 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