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
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr49567.c
blob
309deb479ec0e995b1f21fe044e2a7fd76a01850
1
/* PR debug/49567 */
2
/* { dg-do compile } */
3
/* { dg-options "-g -O2 -msse4" } */
4
5
#include <x86intrin.h>
6
7
__m128
8
foo
(
__m128i x
)
9
{
10
__m128i y
;
11
y
=
_mm_cvtepi16_epi32
(
x
);
12
return
_mm_cvtepi32_ps
(
y
);
13
}