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
* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
991202-3.c
blob
f5718b22031ef5c64e79b5d51c68ec7f3b97285e
1
2
unsigned int
f
(
unsigned int
a
)
3
{
4
return
a
*
65536
/
8
;
5
}
6
7
unsigned int
g
(
unsigned int
a
)
8
{
9
return
a
*
65536
;
10
}
11
12
unsigned int
h
(
unsigned int
a
)
13
{
14
return
a
/
8
;
15
}
16
17
int
main
()
18
{
19
if
(
f
(
65536
) !=
h
(
g
(
65536
)))
20
abort
();
21
exit
(
0
);
22
}