preprocess.c 285 B

12345678
  1. // Check that -E mode is invariant when using an implicit PCH.
  2. // RUN: %clang_cc1 -include %S/preprocess.h -E -o %t.orig %s
  3. // RUN: %clang_cc1 -emit-pch -o %t %S/preprocess.h
  4. // RUN: %clang_cc1 -include-pch %t -E -o %t.from_pch %s
  5. // RUN: diff %t.orig %t.from_pch
  6. a_typedef a_value;