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
Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr69421.c
blob
252e22c18528674d776d834f88b301988d0e210d
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
4
struct
A
{
double
a
; };
5
double
a
;
6
7
void
8
foo
(
_Bool
*
x
)
9
{
10
long
i
;
11
for
(
i
=
0
;
i
<
64
;
i
++)
12
{
13
struct
A c
;
14
x
[
i
] =
c
.
a
||
a
;
15
}
16
}