brintos

brintos / llvm-project-archived public Read only

0
0
Text · 432 B · cabd03c Raw
14 lines · c
1// REQUIRES: x86-registered-target2// Test this without pch.3// RUN: %clang_cc1 -triple i386-unknown-unknown -include %S/asm.h -fsyntax-only -verify %s4 5// Test with pch.6// RUN: %clang_cc1 -triple i386-unknown-unknown -emit-pch -o %t %S/asm.h7// RUN: %clang_cc1 -triple i386-unknown-unknown -include-pch %t -fsyntax-only -verify %s 8 9// expected-no-diagnostics10 11void call_f(void) { f(); }12 13void call_clobbers(void) { clobbers(); }14