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
[LoopInterchange] Hoist isComputableLoopNest() in the control flow (#124247)
[llvm-project.git]
/
lldb
/
test
/
API
/
commands
/
expression
/
persistent_ptr_update
/
main.c
blob
73346969eccc441ece44f91c32b196e35dcd70f9
1
void
*
foo
(
void
*
p
)
2
{
3
return
p
;
// break here
4
}
5
6
int
main
() {
7
while
(
1
) {
8
foo
(
0
);
9
}
10
return
0
;
11
}