asm.c 432 B

12345678910111213
  1. // REQUIRES: x86-registered-target
  2. // Test this without pch.
  3. // RUN: %clang_cc1 -triple i386-unknown-unknown -include %S/asm.h -fsyntax-only -verify %s
  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. // expected-no-diagnostics
  8. void call_f(void) { f(); }
  9. void call_clobbers(void) { clobbers(); }