Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / CodeGen / OpaqueStruct.c
blobfe96126c0581a9e51d95ac299ace2223f757cc49
1 // RUN: %clang_cc1 %s -emit-llvm -o %t
2 typedef struct a b;
4 b* x;
6 struct a {
7 b* p;
8 };
10 void f() {
11 b* z = x->p;