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
* g++.dg/other/i386-2.C (dg-options): Add -mavx512pf.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr47809.c
blob
5832a65d8d8fc4f0a07dbaaff6ef304457d4fee4
1
/* PR c/47809 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -msse2" } */
4
5
#include <emmintrin.h>
6
double
bar
(
double
,
double
);
7
8
__m128d
9
foo
(
__m128d x
)
10
{
11
x
*= (
__m128d
) {
bar
(
1.0
,
1.0
),
0.0
};
12
return
(
__m128d
) ((
__m128i
)
x
^ (
__m128i
) {
0
,
0
});
13
}