blob: 160829b7a6e710684ae8be7a2eaec026dec2d053 [file] [log] [blame]
Douglas Gregorcd7d5a92009-04-17 20:57:14 +00001// Test this without pch.
Daniel Dunbara5728872009-12-15 20:14:24 +00002// RUN: %clang_cc1 -triple i386-unknown-unknown -include %S/asm.h -fsyntax-only -verify %s
Douglas Gregorcd7d5a92009-04-17 20:57:14 +00003
4// Test with pch.
Daniel Dunbara5728872009-12-15 20:14:24 +00005// 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
Douglas Gregorcd7d5a92009-04-17 20:57:14 +00007
Andy Gibbs8e8fb3b2012-10-19 12:44:48 +00008// expected-no-diagnostics
Douglas Gregorcd7d5a92009-04-17 20:57:14 +00009
10void call_f(void) { f(); }
11
12void call_clobbers(void) { clobbers(); }