2014-04-15 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr30961-1.c
blobc7c5e53833c40e3bc303936e076e5f00cb5e093f
1 /* { dg-do compile { target { ! { ia32 } } } } */
2 /* { dg-options "-O2" } */
4 double
5 convert (long long in)
7 double f;
8 __builtin_memcpy( &f, &in, sizeof( in ) );
9 return f;
12 /* { dg-final { scan-assembler-not "movapd" } } */