repo.or.cz
/
clang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git]
/
test
/
CodeGen
/
OpaqueStruct.c
blob
fe96126c0581a9e51d95ac299ace2223f757cc49
1
// RUN: %clang_cc1 %s -emit-llvm -o %t
2
typedef
struct
a b
;
3
4
b
*
x
;
5
6
struct
a
{
7
b
*
p
;
8
};
9
10
void
f
() {
11
b
*
z
=
x
->
p
;
12
}