repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "[LoongArch] Eliminate the redundant sign extension of division (#107971)"
[llvm-project.git]
/
lldb
/
test
/
API
/
functionalities
/
pointer_num_children
/
main.cpp
blob
a17182092a676a2e34baef82fe2ab3a3f562e6a3
1
struct
Inner
{
2
int
a
;
3
int
b
;
4
};
5
6
struct
Outer
{
7
Inner
*
inner
;
8
};
9
10
int
main
() {
11
Inner inner
{
42
,
56
};
12
Outer outer
{&
inner
};
13
Inner
**
Ptr
= &(
outer
.
inner
);
14
Inner
*&
Ref
=
outer
.
inner
;
15
return
0
;
// break here
16
}