blob: b71db63e67ca480bcd41764551b746b82a5b0cf1 (
plain)
1
2
3
4
5
6
7
8
|
// Test this without pch.
// RUN: clang-cc -fblocks -include %S/stmts.h -fsyntax-only -emit-llvm -o - %s
// Test with pch.
// RUN: clang-cc -emit-pch -fblocks -o %t %S/stmts.h &&
// RUN: clang-cc -fblocks -include-pch %t -fsyntax-only -emit-llvm -o - %s
void g0(void) { f0(5); }
|