repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Small ChangeLog tweak.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20000217-1.c
blob
42716afbe0b1901b75745560f5b7c15221c1ded4
1
unsigned short int
showbug
(
unsigned short int
*
a
,
unsigned short int
*
b
)
2
{
3
*
a
+= *
b
-
8
;
4
return
(*
a
>=
8
);
5
}
6
7
int
main
()
8
{
9
unsigned short int
x
=
0
;
10
unsigned short int
y
=
10
;
11
12
if
(
showbug
(&
x
, &
y
) !=
0
)
13
abort
();
14
15
exit
(
0
);
16
}
17