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.dg
/
torture
/
pr37731-2.c
blob
a7f8f1e02e5a825fbe296053fd3b0c94d279ca14
1
/* { dg-do run } */
2
3
extern
void
abort
();
4
5
long long
xh
=
1
;
6
7
int
8
main
()
9
{
10
long long
yh
=
0xffffffff
ll
;
11
long long
z
=
xh
*
yh
;
12
13
if
(
z
!=
yh
)
14
abort
();
15
16
return
0
;
17
}