In the latest episode of "Deserializing bugs caused by accessors" the series reached...
[clang.git] / test / PCH / preprocess.c
blob8bf841f17f8dcaac7d7d18a50cc3ceffa719c035
1 // Check that -E mode is invariant when using an implicit PCH.
3 // RUN: %clang_cc1 -include %S/preprocess.h -E -o %t.orig %s
4 // RUN: %clang_cc1 -emit-pch -o %t %S/preprocess.h
5 // RUN: %clang_cc1 -include-pch %t -E -o %t.from_pch %s
6 // RUN: diff %t.orig %t.from_pch
8 a_typedef a_value;