You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// Test with pch.
|
|
// RUN: %clang_cc1 -emit-pch -frecovery-ast -fallow-pch-with-compiler-errors -o %t %s
|
|
// RUN: %clang_cc1 -include-pch %t -fno-validate-pch -emit-llvm -o - %s
|
|
|
|
#ifndef HEADER
|
|
#define HEADER
|
|
|
|
int func(int);
|
|
int s = func();
|
|
|
|
#else
|
|
|
|
#endif
|