mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-05 23:23:09 +00:00
This is the result of: ... $ git rm -rf gdb/testsuite $ git commit -a -m tmp $ git revert HEAD $ git rebase --whitespace=fix HEAD^ ... Tested on x86_64-linux. PR build/33616 Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=33616
21 lines
204 B
C
21 lines
204 B
C
#include <stdio.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
int i = 0;
|
|
goto there;
|
|
|
|
here:
|
|
printf("not here\n");
|
|
i = 1;
|
|
|
|
there:
|
|
printf("but here\n");
|
|
if (i == 0)
|
|
goto here;
|
|
|
|
done:
|
|
return 0;
|
|
}
|