mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 02:33:06 +01:00
[Verifier] add tests for vector reductions; NFC
Checking existing functionality before D96904.
This commit is contained in:
parent
200f7b3df8
commit
1f4fdce14b
40
test/Verifier/reduction-intrinsics.ll
Normal file
40
test/Verifier/reduction-intrinsics.ll
Normal file
@ -0,0 +1,40 @@
|
||||
; RUN: not opt -S -verify < %s 2>&1 | FileCheck %s
|
||||
|
||||
; Reject a vector reduction with a non-vector argument.
|
||||
|
||||
define float @reduce_vector_not_vec_arg(float %x) {
|
||||
; CHECK: Intrinsic has incorrect argument type!
|
||||
%r0 = call float @llvm.vector.reduce.fmax.f32(float %x)
|
||||
ret float %r0
|
||||
}
|
||||
|
||||
define i32 @reduce_vector_not_vec_arg2(i32 %x) {
|
||||
; CHECK: Intrinsic has incorrect argument type!
|
||||
%r0 = call i32 @llvm.vector.reduce.smax.i32(i32 %x)
|
||||
ret i32 %r0
|
||||
}
|
||||
|
||||
; Type mismatch for start value.
|
||||
|
||||
define float @fadd_match_arg_types(<4 x float> %x) {
|
||||
; CHECK: Intrinsic has incorrect argument type!
|
||||
%r = call float @llvm.vector.reduce.fadd.v4f32(double 0.0, <4 x float> %x)
|
||||
ret float %r
|
||||
}
|
||||
|
||||
; Wrong result type.
|
||||
|
||||
define i64 @result_too_wide(<4 x i32> %x) {
|
||||
; CHECK: Intrinsic has incorrect return type!
|
||||
%r = call i64 @llvm.vector.reduce.add.v4i32(<4 x i32> %x)
|
||||
ret i64 %r
|
||||
}
|
||||
|
||||
declare float @llvm.vector.reduce.umin.v4f32(<4 x float>)
|
||||
declare i32* @llvm.vector.reduce.or.v4p0i32(<4 x i32*>)
|
||||
declare i32 @llvm.vector.reduce.fadd.v4i32(i32, <4 x i32>)
|
||||
declare float @llvm.vector.reduce.fadd.v4f32(double, <4 x float>)
|
||||
declare i32* @llvm.vector.reduce.fmin.v4p0i32(<4 x i32*>)
|
||||
declare float @llvm.vector.reduce.fmax.f32(float)
|
||||
declare i32 @llvm.vector.reduce.smax.i32(i32)
|
||||
declare i64 @llvm.vector.reduce.add.v4i32(<4 x i32>)
|
Loading…
Reference in New Issue
Block a user