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
Stop only if there aren't any usable algorithms
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr58679-1.c
blob
91db8e63e7fbde948ff0bc9abb4f73ac606b5bb0
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -mavx" } */
3
4
typedef
struct
{
char
a
;
long long
b
; }
S
;
5
6
S
foo
(
S x
,
S y
)
7
{
8
S z
;
9
10
z
.
a
=
0
;
11
z
.
b
=
x
.
b
/
y
.
b
;
12
return
z
;
13
}