1 // Test this without pch. 2 // RUN: %clang_cc1 -triple i386-unknown-unknown -include %S/asm.h -fsyntax-only -verify %s 3 4 // Test with pch. 5 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-pch -o %t %S/asm.h 6 // RUN: %clang_cc1 -triple i386-unknown-unknown -include-pch %t -fsyntax-only -verify %s 7 8 // expected-no-diagnostics 9 10 void call_f(void) { f(); } 11 12 void call_clobbers(void) { clobbers(); } 13