mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
e3e147deb9
As @efriedma pointed out in D86301, this "not equal to 0 check" of get.active.lane.mask's second operand needs to live here in Lint and not the Verifier. Differential Revision: https://reviews.llvm.org/D87228
40 lines
1.1 KiB
LLVM
40 lines
1.1 KiB
LLVM
; RUN: opt -lint -disable-output < %s 2>&1 | FileCheck %s
|
|
|
|
define <4 x i1> @t1(i32 %IV) {
|
|
;
|
|
; CHECK: get_active_lane_mask: operand #2 must be greater than 0
|
|
; CHECK-NEXT: %res = call <4 x i1> @llvm.get.active.lane.mask.v4i1.i32(i32 %IV, i32 0)
|
|
;
|
|
%res = call <4 x i1> @llvm.get.active.lane.mask.v4i1.i32(i32 %IV, i32 0)
|
|
ret <4 x i1> %res
|
|
}
|
|
|
|
define <4 x i1> @t2(i32 %IV) {
|
|
;
|
|
; CHECK-NOT: get_active_lane_mask
|
|
; CHECK-NOT: call <4 x i1> @llvm.get.active.lane.mask
|
|
;
|
|
%res = call <4 x i1> @llvm.get.active.lane.mask.v4i1.i32(i32 %IV, i32 1)
|
|
ret <4 x i1> %res
|
|
}
|
|
|
|
define <4 x i1> @t3(i32 %IV) {
|
|
;
|
|
; CHECK-NOT: get_active_lane_mask
|
|
; CHECK-NOT: call <4 x i1> @llvm.get.active.lane.mask
|
|
;
|
|
%res = call <4 x i1> @llvm.get.active.lane.mask.v4i1.i32(i32 %IV, i32 -1)
|
|
ret <4 x i1> %res
|
|
}
|
|
|
|
define <4 x i1> @t4(i32 %IV, i32 %TC) {
|
|
;
|
|
; CHECK-NOT: get_active_lane_mask
|
|
; CHECK-NOT: call <4 x i1> @llvm.get.active.lane.mask
|
|
;
|
|
%res = call <4 x i1> @llvm.get.active.lane.mask.v4i1.i32(i32 %IV, i32 %TC)
|
|
ret <4 x i1> %res
|
|
}
|
|
|
|
declare <4 x i1> @llvm.get.active.lane.mask.v4i1.i32(i32, i32)
|