[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git] / llvm / test / Verifier / sat-intrinsics.ll
blob44b8d338fc008c43c68e4c8ef3a5aba9735db10b
1 ; RUN: not opt -S -passes=verify < %s 2>&1 | FileCheck %s
3 define i32 @sadd_arg_int(float %x, i32 %y) {
4 ; CHECK: Intrinsic has incorrect argument type!
5   %r = call i32 @llvm.sadd.sat.i32(float %x, i32 %y)
6   ret i32 %r
9 define i37 @uadd_arg_int(half %x, i37 %y) {
10 ; CHECK: Intrinsic has incorrect argument type!
11   %r = call i37 @llvm.uadd.sat.i37(i37 %y, half %x)
12   ret i37 %r
15 define <4 x i32> @ssub_arg_int(<5 x i32> %x, <4 x i32> %y) {
16 ; CHECK: Intrinsic has incorrect argument type!
17   %r = call <4 x i32> @llvm.ssub.sat.v4i32(<5 x i32> %x, <4 x i32> %y)
18   ret <4 x i32> %r
21 define <3 x i37> @usub_arg_int(<3 x i37> %x, <3 x i32> %y) {
22 ; CHECK: Intrinsic has incorrect argument type!
23   %r = call <3 x i37> @llvm.usub.sat.v3i37(<3 x i37> %x, <3 x i32> %y)
24   ret <3 x i37> %r
27 define float @ushl_return_int(i32 %x, i32 %y) {
28 ; CHECK: Intrinsic has incorrect return type!
29   %r = call float @llvm.ushl.sat.i32(i32 %x, i32 %y)
30   ret float %r
33 define <4 x float> @sshl_return_int_vec(<4 x i32> %x, <4 x i32> %y) {
34 ; CHECK: Intrinsic has incorrect return type!
35   %r = call <4 x float> @llvm.sshl.sat.v4i32(<4 x i32> %x, <4 x i32> %y)
36   ret <4 x float> %r
39 declare i32 @llvm.sadd.sat.i32(float, i32)
40 declare i37 @llvm.uadd.sat.i37(i37, half)
41 declare <4 x i32> @llvm.ssub.sat.v4i32(<5 x i32>, <4 x i32>)
42 declare <3 x i37> @llvm.usub.sat.v3i37(<3 x i37>, <3 x i32>)
43 declare float @llvm.ushl.sat.i32(i32, i32)
44 declare <4 x float> @llvm.sshl.sat.v4i32(<4 x i32>, <4 x i32>)