blob: b417ddae9ba13279f692de87e9a699a579d70856 [file] [log] [blame]
/* PR target/8870 */
/* Originator: otaylor@redhat.com */
/* { dg-do compile { target i?86-*-* x86_64-*-*} } */
/* { dg-options "-O1 -mmmx -march=k8" } */
typedef int v4hi __attribute__ ((mode (V4HI)));
static inline v4hi cvtsi_v4hi (int i)
{
long long tmp = i;
return (v4hi) tmp;
}
v4hi bar (unsigned short a)
{
return cvtsi_v4hi (a);
}