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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
990130-1.c
blob
c38ecddbe596bae136d54f9b70d8d26ecdd0ab48
1
int
count
=
0
;
2
int
dummy
;
3
4
static int
*
5
bar
(
void
)
6
{
7
++
count
;
8
return
&
dummy
;
9
}
10
11
static void
12
foo
(
void
)
13
{
14
asm
(
""
:
"+r"
(*
bar
()));
15
}
16
17
main
()
18
{
19
foo
();
20
if
(
count
!=
1
)
21
abort
();
22
exit
(
0
);
23
}