Fixed some bugs.
[llvm/zpu.git] / test / CodeGen / X86 / vec-trunc-store.ll
blob2f57d7b571f029a8d6c175c022cd93ec79e4d8cc
1 ; RUN: llc < %s -march=x86-64 -disable-mmx >/dev/null
3 define void @foo(<8 x i32>* %p) nounwind {
4   %t = load <8 x i32>* %p
5   %cti69 = trunc <8 x i32> %t to <8 x i16>     ; <<8 x i16>> [#uses=1]
6   store <8 x i16> %cti69, <8 x i16>* undef
7   ret void
10 define void @bar(<4 x i32>* %p) nounwind {
11   %t = load <4 x i32>* %p
12   %cti44 = trunc <4 x i32> %t to <4 x i16>     ; <<4 x i16>> [#uses=1]
13   store <4 x i16> %cti44, <4 x i16>* undef
14   ret void