Daniel Dunbar | 1ea5294 | 2009-11-12 01:36:20 +0000 | [diff] [blame^] | 1 | // Check that -E mode is invariant when using an implicit PCH. |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 2 | |
Daniel Dunbar | 1ea5294 | 2009-11-12 01:36:20 +0000 | [diff] [blame^] | 3 | // RUN: clang-cc -include %S/preprocess.h -E -o %t.orig %s |
4 | // RUN: clang-cc -emit-pch -o %t %S/preprocess.h | ||||
5 | // RUN: clang-cc -include-pch %t -E -o %t.from_pch %s | ||||
6 | // RUN: diff %t.orig %t.from_pch | ||||
7 | |||||
8 | a_typedef a_value; |