This should always be signed chars, so use int8_t. This fixes a miscompile when
[llvm/stm8.git] / test / CodeGen / X86 / vec-trunc-store.ll
blob4d665f1843efccc42c3885f9ab063d51a7f953e3
1 ; RUN: llc < %s -march=x86-64
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