repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
930406-1.c
blob
9728eabd7eda436ba5c7f83183f5ac5fffe00f08
1
f
()
2
{
3
int
x
=
1
;
4
#if defined(STACK_SIZE)
5
char
big
[
STACK_SIZE
/
2
];
6
#else
7
char
big
[
0x1000
];
8
#endif
9
10
({
11
__label__ mylabel
;
12
mylabel
:
13
x
++;
14
if
(
x
!=
3
)
15
goto
mylabel
;
16
});
17
exit
(
0
);
18
}
19
20
main
()
21
{
22
f
();
23
}