Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / SystemZ / memcmp-02.ll
blob3609b9427910d4a4bd48df7f6e6c3650842bb297
1 ; Test memcmp using CLC.  In this test case the CLC loop will do all the work
2 ; and the DoneMBB becomes empty. It will not pass the mischeduling verifiers
3 ; if DoneMBB does not have CC in its live-in list.
5 ; RUN: llc < %s -mtriple=s390x-linux-gnu -misched=shuffle | FileCheck %s
6 ; REQUIRES: asserts
8 declare i32 @memcmp(ptr nocapture, ptr nocapture, i64)
10 define i32 @fun() {
11 ; CHECK-LABEL: fun
12   %call = call signext i32 @memcmp(ptr nonnull undef, ptr nonnull undef, i64 2048)
13   %cmp = icmp eq i32 %call, 0
14   br i1 %cmp, label %labT, label %labF
16 labT:
17   ret i32 0
19 labF:
20   ret i32 1