bolt/deps/llvm-18.1.8/clang/test/PCH/format-strings.c
2025-02-14 19:21:04 +01:00

16 lines
280 B
C

// RUN: %clang_cc1 -D FOOBAR="\"\"" %s -emit-pch -o %t.pch
// RUN: %clang_cc1 -D FOOBAR="\"\"" %s -include-pch %t.pch
#ifndef HEADER
#define HEADER
extern int printf(const char *restrict, ...);
#define LOG printf(FOOBAR "%f", __LINE__)
#else
void foo(void) {
LOG;
}
#endif