Files
clang-p2996/llvm/test/CodeGen/SystemZ/int-cmp-55.ll
Kai Nacke a1710eb3cd [SystemZ][NFC] Opaque pointer migration.
The LIT test cases were migrated with the script provided by
Nikita Popov.

No manual changes were made. Committed without review since
no functional changes, after consultation with uweigand.
2022-10-11 21:09:43 +00:00

20 lines
401 B
LLVM

; Check that we don't insert unnecessary CC spills
;
; RUN: llc < %s -mtriple=s390x-linux-gnu
declare signext i32 @f()
define signext i32 @test(ptr %ptr) {
; CHECK-NOT: ipm
entry:
%0 = load i32, ptr %ptr, align 4
%tobool = icmp eq i32 %0, 0
%call = tail call signext i32 @f()
%1 = icmp slt i32 %call, 40
%2 = or i1 %tobool, %1
%retv = select i1 %2, i32 %call, i32 40
ret i32 %retv
}