Alex MacLean 9b24ccca73
[NVPTX] Allow more argument integer types, such as i256 and i96 (#154824)
The refactoring of ComputePTXValueVTs in #154476 caused the complier to
no longer crash when lowering i256 and i96. This has caused a few tests
to unexpectedly pass.

Update these tests and tweak how we emit parameter declarations to
correctly lower these types.
2025-08-21 13:54:38 -07:00

50 lines
1.0 KiB
LLVM

; RUN: llc < %s | FileCheck %s
; CHECK-LABEL: test_ult
define i1 @test_ult(i256 %a) nounwind {
%1 = icmp ult i256 %a, -6432394258550908438
ret i1 %1
}
; CHECK-LABEL: test_ule
define i1 @test_ule(i256 %a) nounwind {
%1 = icmp ule i256 %a, -6432394258550908438
ret i1 %1
}
; CHECK-LABEL: test_ugt
define i1 @test_ugt(i256 %a) nounwind {
%1 = icmp ugt i256 %a, -6432394258550908438
ret i1 %1
}
; CHECK-LABEL: test_uge
define i1 @test_uge(i256 %a) nounwind {
%1 = icmp uge i256 %a, -6432394258550908438
ret i1 %1
}
; CHECK-LABEL: test_slt
define i1 @test_slt(i256 %a) nounwind {
%1 = icmp slt i256 %a, -6432394258550908438
ret i1 %1
}
; CHECK-LABEL: test_sle
define i1 @test_sle(i256 %a) nounwind {
%1 = icmp sle i256 %a, -6432394258550908438
ret i1 %1
}
; CHECK-LABEL: test_sgt
define i1 @test_sgt(i256 %a) nounwind {
%1 = icmp sgt i256 %a, -6432394258550908438
ret i1 %1
}
; CHECK-LABEL: test_sge
define i1 @test_sge(i256 %a) nounwind {
%1 = icmp sge i256 %a, -6432394258550908438
ret i1 %1
}