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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr99104.c
blob
807e1da4090803f7e6aac1312aff0ef6838d0aeb
1
/* PR target/99104 */
2
/* { dg-do compile { target int128 } } */
3
/* { dg-options "-O2 -fsel-sched-pipelining -fselective-scheduling2 -funroll-loops" } */
4
5
__int128 a
;
6
int
b
;
7
int
foo
(
void
);
8
9
int
__attribute__
((
simd
))
10
bar
(
void
)
11
{
12
a
= ~
a
;
13
if
(
foo
())
14
b
=
0
;
15
}