Commit some changes I had managed to lose last night while refactoring the code....
[oota-llvm.git] / test / CodeGen / X86 / widen_conv-1.ll
1 ; RUN: llc < %s -march=x86 -mattr=+sse42 -disable-mmx | FileCheck %s
2 ; CHECK: pshufd
3 ; CHECK: paddd
4
5 ; truncate v2i64 to v2i32
6
7 define void @convert(<2 x i32>* %dst.addr, <2 x i64> %src) nounwind {
8 entry:
9         %val = trunc <2 x i64> %src to <2 x i32>
10         %add = add <2 x i32> %val, < i32 1, i32 1 >
11         store <2 x i32> %add, <2 x i32>* %dst.addr
12         ret void
13 }