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
/
multdi-1.c
blob
1ffcc578e516617c0e73000c13aab120c7b51b80
1
/* PR target/9348 */
2
3
#define u_l_l unsigned long long
4
#define l_l long long
5
6
l_l mpy_res
;
7
8
u_l_l
mpy
(
long
a
,
long
b
)
9
{
10
return
(
u_l_l
)
a
* (
u_l_l
)
b
;
11
}
12
13
int
main
(
void
)
14
{
15
mpy_res
=
mpy
(
1
,-
1
);
16
if
(
mpy_res
!= -
1LL
)
17
abort
();
18
return
0
;
19
}
20