repo.or.cz
/
binutils-gdb
/
blckswan.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Automatic date update in version.in
[binutils-gdb/blckswan.git]
/
gdb
/
testsuite
/
gdb.mi
/
until.c
blob
83beea08f41203696f7b9ccd00fb252d8c137a2e
1
void
2
foo
(
void
)
3
{
4
int
i
,
x
,
y
,
z
;
5
6
x
=
0
;
7
y
=
1
;
8
i
=
0
;
9
10
while
(
i
<
2
)
11
i
++;
/* in-loop */
12
13
x
=
i
;
/* after-loop */
14
y
=
2
*
x
;
15
z
=
x
+
y
;
16
y
=
x
+
z
;
/* until-here */
17
x
=
9
;
18
y
=
10
;
/* until-there */
19
}
20
21
int
22
main
()
23
{
24
int
a
=
1
;
25
foo
();
26
a
+=
2
;
27
return
0
;
/* at-return */
28
}