blob: 796b9dcda12c6d0eb4fa2c856a7def4b3e3501b6 [file] [log] [blame]
Douglas Gregor668c1a42009-04-21 22:25:48 +00001// Test this without pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00002// RUN: clang-cc -include %S/builtins.h -fsyntax-only -verify %s
Douglas Gregor668c1a42009-04-21 22:25:48 +00003
4// Test with pch.
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00005// RUN: clang-cc -emit-pch -o %t %S/builtins.h
Douglas Gregor668c1a42009-04-21 22:25:48 +00006// RUN: clang-cc -include-pch %t -fsyntax-only -verify %s
7
8void hello() {
9 printf("Hello, World!");
10}