freebsd-skq/test/PCH/builtins.c

13 lines
295 B
C
Raw Normal View History

2009-06-02 17:58:47 +00:00
// Test this without pch.
2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -include %S/builtins.h -fsyntax-only -verify %s
2009-06-02 17:58:47 +00:00
// Test with pch.
2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -emit-pch -o %t %S/builtins.h
// RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify %s
2009-06-02 17:58:47 +00:00
// expected-no-diagnostics
2009-06-02 17:58:47 +00:00
void hello() {
printf("Hello, World!");
}