Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / PCH / cxx-recovery-expr.cpp
blobe0d58c119c5404f52f9f6d512436234ee6b2cdac
1 // Test with pch.
2 // RUN: %clang_cc1 -emit-pch -frecovery-ast -fallow-pch-with-compiler-errors -o %t %s
3 // RUN: %clang_cc1 -include-pch %t -fno-validate-pch -emit-llvm -o - %s
5 #ifndef HEADER
6 #define HEADER
8 int func(int);
9 int s = func();
11 #else
13 #endif