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
[NFC][AArch64] Explicitly define undefined bits for instructions (#122129)
[llvm-project.git]
/
lldb
/
test
/
API
/
api
/
multithreaded
/
inferior.cpp
blob
3755bdd04f880167540c603a5dcbed78f9394af0
1
2
#include <iostream>
3
4
5
6
int
next
() {
7
static int
i
=
0
;
8
std
::
cout
<<
"incrementing "
<<
i
<<
std
::
endl
;
9
return
++
i
;
10
}
11
12
int
main
() {
13
int
i
=
0
;
14
while
(
i
<
5
)
15
i
=
next
();
16
return
0
;
17
}