Commit one last NEON test to use FileCheck. That's all of them now!
[oota-llvm.git] / test / CodeGen / X86 / widen_conv-1.ll
1 ; RUN: llc < %s -march=x86 -mattr=+sse42 -disable-mmx -o %t
2 ; RUN: grep pshufd %t | count 1
3 ; RUN: grep paddd  %t | count 1
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 }