Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / PCH / asm.c
blobcabd03cac9ae185a8ba73b4e94ad475298587009
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
5 // Test with pch.
6 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-pch -o %t %S/asm.h
7 // RUN: %clang_cc1 -triple i386-unknown-unknown -include-pch %t -fsyntax-only -verify %s
9 // expected-no-diagnostics
11 void call_f(void) { f(); }
13 void call_clobbers(void) { clobbers(); }