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
Merge from branches/gcc-4_8-branch up to rev 207411.
[official-gcc.git]
/
gcc-4_8-branch
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr59839.c
blob
dfb89456f9d10257dc58ba06dcc2186a2f92131d
1
/* PR target/59839 */
2
/* { dg-do compile } */
3
/* { dg-options "-O0 -mavx2" } */
4
5
#include <x86intrin.h>
6
7
void
8
test
(
const float
*
x
)
9
{
10
__m256i i
=
_mm256_set1_epi32
(
1
);
11
__m256 d
=
_mm256_i32gather_ps
(
x
,
i
,
1
);
12
}