PR remote/19496, internal err forking-threads-plus-bkpt
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / label.c
CommitLineData
0f5238ed
TT
1#include <stdio.h>
2
3int
2d8c5d7c 4main (int argc, char **argv)
0f5238ed
TT
5{
6 int i = 0;
7 goto there;
8
9here:
10 printf("not here\n");
11 i = 1;
12
13there:
14 printf("but here\n");
15 if (i == 0)
16 goto here;
17
18done:
19 return 0;
20}
21
This page took 0.740964 seconds and 4 git commands to generate.