xref
: /
llvm-project
/
clang
/
test
/
PCH
/
debug-info-limited-struct.h
(revision e9e55acd1ba33311e13e690f8db129b3a624dbd0)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
struct
foo
{
2
int
i
;
3
};
4
func(void)
5
void
func
(
void
) {
6
struct
foo
*
f
;
7
f
->
i
=
3
;
8
}
9