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
/
20001009-2.c
blob
eedc299fbcb9734ebfb736ebda67bbcf28185dce
1
int
b
=
1
;
2
int
foo
()
3
{
4
int
a
;
5
int
c
;
6
a
=
0xff
;
7
for
(;
b
;
b
--)
8
{
9
c
=
1
;
10
asm
(
""
::
"r"
(
c
));
11
c
=(
signed char
)
a
;
12
}
13
if
(
c
!=-
1
)
14
abort
();
15
return
c
;
16
}
17
int
main
()
18
{
19
foo
();
20
return
0
;
21
}