blob: a18bbde23f71e26101cbab9fbe2793e6d91745da [file] [log] [blame]
#ifdef EXPECT_PCH
// Verify that pch/pch.h was included via '-include ...' or equivalent.
# ifndef PCH_PCH_H_INCLUDED
# error "Expected PCH_PCH_H_INCLUDED."
# endif
#elif defined(__PGIC__) || defined(__ibmxl__) || defined(_CRAYC)
// No PCH expected but these compilers define macros below.
#elif defined(__GNUC__) || defined(__clang__) || defined(_INTEL_COMPILER) || \
defined(_MSC_VER)
# error "Expected EXPECT_PCH for this compiler."
#endif
int main()
{
return 0;
}