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
Document gcov-io (PR gcov-profile/84735).
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr84670-1.c
blob
c1ad474aa47105d780fe192cae16c5f26c2832d3
1
/* { dg-do compile { target int128 } } */
2
/* { dg-options "-O2 -fno-tree-dominator-opts" } */
3
4
int
a
,
b
,
c
,
d
;
5
6
int
7
foo
(
void
)
8
{
9
__int128 i
;
10
l
:
11
i
-=
c
;
12
if
(
b
)
13
goto
l
;
14
__builtin_mul_overflow
(
0
,
a
, &
c
);
15
if
(
d
)
16
goto
l
;
17
return
i
;
18
}