Handle logical shift right (at least I hope so :) )
[llvm/msp430.git] / test / CodeGen / X86 / 2008-09-05-sinttofp-2xi32.ll
blobffe10d439bc70da48b62ed4e8cb1d54a13c03da5
1 ; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep cvttpd2pi | count 1
2 ; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep cvtpi2pd | count 1
3 ; PR2687
5 define <2 x double> @a(<2 x i32> %x) nounwind {
6 entry:
7   %y = sitofp <2 x i32> %x to <2 x double>
8   ret <2 x double> %y
11 define <2 x i32> @b(<2 x double> %x) nounwind {
12 entry:
13   %y = fptosi <2 x double> %x to <2 x i32>
14   ret <2 x i32> %y