repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix C++ template function matching in cooked index
[binutils-gdb.git]
/
gdb
/
testsuite
/
gdb.base
/
label.c
blob
c15e3bf6c847cbb863b304e818b9d0a234d92301
1
#include <stdio.h>
2
3
int
4
main
(
int
argc
,
char
**
argv
)
5
{
6
int
i
=
0
;
7
goto
there
;
8
9
here
:
10
printf
(
"not here
\n
"
);
11
i
=
1
;
12
13
there
:
14
printf
(
"but here
\n
"
);
15
if
(
i
==
0
)
16
goto
here
;
17
18
done
:
19
return
0
;
20
}
21