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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr88594.c
blob
6e3f2994056a73e470ae976e9eea8665696c3726
1
/* PR target/88594 */
2
/* { dg-do compile { target int128 } } */
3
/* { dg-options "-O2 -fno-tree-dominator-opts -fno-tree-forwprop -fno-tree-vrp" } */
4
5
__int128
6
foo
(
__int128 x
,
__int128
*
y
)
7
{
8
int
a
;
9
__int128 z
,
r
;
10
for
(
a
=
0
;
a
<
17
; ++
a
)
11
;
12
z
=
x
/
a
;
13
r
=
x
%
a
;
14
*
y
=
z
;
15
return
r
;
16
}