[MIPS GlobalISel] Select MSA vector generic and builtin add
[llvm-complete.git] / test / CodeGen / SystemZ / vec-strict-conv-03.ll
blobace2e1ec42e3c34c57c32485471d3af9c20ab9b1
1 ; Test strict conversions between integer and float elements on z15.
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z15 | FileCheck %s
5 ; FIXME: llvm.experimental.constrained.[su]itofp does not yet exist
7 declare <4 x i32> @llvm.experimental.constrained.fptoui.v4i32.v4f32(<4 x float>, metadata)
8 declare <4 x i32> @llvm.experimental.constrained.fptosi.v4i32.v4f32(<4 x float>, metadata)
10 ; Test conversion of f32s to signed i32s.
11 define <4 x i32> @f1(<4 x float> %floats) #0 {
12 ; CHECK-LABEL: f1:
13 ; CHECK: vcfeb %v24, %v24, 0, 5
14 ; CHECK: br %r14
15   %words = call <4 x i32> @llvm.experimental.constrained.fptosi.v4i32.v4f32(<4 x float> %floats,
16                                                metadata !"fpexcept.strict") #0
17   ret <4 x i32> %words
20 ; Test conversion of f32s to unsigned i32s.
21 define <4 x i32> @f2(<4 x float> %floats) #0 {
22 ; CHECK-LABEL: f2:
23 ; CHECK: vclfeb %v24, %v24, 0, 5
24 ; CHECK: br %r14
25   %words = call <4 x i32> @llvm.experimental.constrained.fptoui.v4i32.v4f32(<4 x float> %floats,
26                                                metadata !"fpexcept.strict") #0
27   ret <4 x i32> %words
30 attributes #0 = { strictfp }