[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Verifier / reduction-intrinsics.ll
blobf6224bb111ec6cf7135923d6c75c1f27e14f074c
1 ; RUN: not opt -S -verify < %s 2>&1 | FileCheck %s
3 ; Reject a vector reduction with a non-vector argument.
5 define float @reduce_vector_not_vec_arg(float %x) {
6 ; CHECK: Intrinsic has incorrect argument type!
7   %r0 = call float @llvm.vector.reduce.fmax.f32(float %x)
8   ret float %r0
11 define i32 @reduce_vector_not_vec_arg2(i32 %x) {
12 ; CHECK: Intrinsic has incorrect argument type!
13   %r0 = call i32 @llvm.vector.reduce.smax.i32(i32 %x)
14   ret i32 %r0
17 ; Type mismatch for start value.
19 define float @fadd_match_arg_types(<4 x float> %x) {
20 ; CHECK: Intrinsic has incorrect argument type!
21   %r = call float @llvm.vector.reduce.fadd.v4f32(double 0.0, <4 x float> %x)
22   ret float %r
25 ; Wrong result type.
27 define i64 @result_too_wide(<4 x i32> %x) {
28 ; CHECK: Intrinsic has incorrect return type!
29   %r = call i64 @llvm.vector.reduce.add.v4i32(<4 x i32> %x)
30   ret i64 %r
33 ; We should have the appropriate (either int or FP) type of argument
34 ; for any vector reduction.
36 define float @not_float_reduce(<4 x float> %x) {
37 ; CHECK: Intrinsic has incorrect argument type!
38   %r = call float @llvm.vector.reduce.umin.v4f32(<4 x float> %x)
39   ret float %r
42 define i32* @not_pointer_reduce(<4 x i32*> %x) {
43 ; CHECK: Intrinsic has incorrect argument type!
44   %r = call i32* @llvm.vector.reduce.or.v4p0i32(<4 x i32*> %x)
45   ret i32* %r
48 define i32 @not_integer_reduce(<4 x i32> %x) {
49 ; CHECK: Intrinsic has incorrect argument type!
50   %r = call i32 @llvm.vector.reduce.fadd.v4i32(i32 0, <4 x i32> %x)
51   ret i32 %r
54 define i32* @not_pointer_reduce2(<4 x i32*> %x) {
55 ; CHECK: Intrinsic has incorrect argument type!
56   %r = call i32* @llvm.vector.reduce.fmin.v4p0i32(<4 x i32*> %x)
57   ret i32* %r
60 declare float @llvm.vector.reduce.umin.v4f32(<4 x float>)
61 declare i32* @llvm.vector.reduce.or.v4p0i32(<4 x i32*>)
62 declare i32 @llvm.vector.reduce.fadd.v4i32(i32, <4 x i32>)
63 declare float @llvm.vector.reduce.fadd.v4f32(double, <4 x float>)
64 declare i32* @llvm.vector.reduce.fmin.v4p0i32(<4 x i32*>)
65 declare float @llvm.vector.reduce.fmax.f32(float)
66 declare i32 @llvm.vector.reduce.smax.i32(i32)
67 declare i64 @llvm.vector.reduce.add.v4i32(<4 x i32>)