Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / PCH / multiple_decls.c
blobe2cc552336ea2976e4a939e4b8af6338053d4671
1 // Test this without pch.
2 // RUN: %clang_cc1 -include %S/multiple_decls.h -fsyntax-only -ast-print -o - %s
4 // Test with pch.
5 // RUN: %clang_cc1 -emit-pch -o %t %S/multiple_decls.h
6 // RUN: %clang_cc1 -include-pch %t -fsyntax-only -ast-print -o - %s
8 void f0(char c) {
9 wide(c);
12 struct wide w;
13 struct narrow n;
15 void f1(int i) {
16 narrow(i);