Fix C++ template function matching in cooked index
[binutils-gdb.git] / gdb / testsuite / gdb.base / label.c
blobc15e3bf6c847cbb863b304e818b9d0a234d92301
1 #include <stdio.h>
3 int
4 main (int argc, char **argv)
6 int i = 0;
7 goto there;
9 here:
10 printf("not here\n");
11 i = 1;
13 there:
14 printf("but here\n");
15 if (i == 0)
16 goto here;
18 done:
19 return 0;