Add missing newline to debug statement.
[llvm.git] / test / CodeGen / X86 / 2008-10-16-VecUnaryOp.ll
blobde4c1e70b8d85e4e7b4a1e5d4566f46721536184
1 ; RUN: llc < %s -march=x86 -mattr=+sse2
2 ; PR2762
3 define void @foo(<4 x i32>* %p, <4 x double>* %q) {
4   %n = load <4 x i32>* %p
5   %z = sitofp <4 x i32> %n to <4 x double>
6   store <4 x double> %z, <4 x double>* %q
7   ret void