Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / SystemZ / int-cmp-52.ll
blob694cc6eea8265e824ccb4043e7018bd3d1918461
1 ; This used to crash the backend due to a failed assertion.
2 ; No particular output expected, but must compile.
4 ; RUN: llc < %s -mtriple=s390x-linux-gnu
6 define void @test(ptr %input, ptr %result) {
7 entry:
8   %0 = load i16, ptr %input, align 2
9   %1 = zext i16 %0 to i32
10   %2 = icmp slt i32 %1, 0
11   br i1 %2, label %if.then, label %if.else
13 if.then:
14   store i32 1, ptr %result, align 4
15   br label %return
17 if.else:
18   store i32 0, ptr %result, align 4
19   br label %return
21 return:
22   ret void