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
2018-06-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr68835-1.c
blob
47aebe3c1c6103dc7e20de001c041547cb178d83
1
/* PR tree-optimization/68835 */
2
/* { dg-do compile { target int128 } } */
3
/* { dg-options "-O2" } */
4
5
unsigned
__int128
6
foo
(
unsigned long
a
,
unsigned long
b
)
7
{
8
unsigned
__int128 x
= (
unsigned
__int128
)
a
*
b
;
9
struct
{
unsigned
__int128 a
:
96
; }
w
;
10
w
.
a
=
x
;
11
return
w
.
a
;
12
}