llvm-project/llvm/test/Transforms/InstCombine/2008-07-10-CastSextBool.ll
Nikita Popov 2caaec65c0 [InstCombine] Regenerate all test checks (NFC)
Due to an improvement to name preservation, a lot of InstCombine
tests now show spurious diffs when regenerated.

Rather than regenerating individual files when they get touched,
mass-regenerate all UTC-based InstCombine tests. I have then reset
a number of files showing suspicious diffs where the UTC output
has clearly been manually adjusted. I apologize if I missed
anything in the mass of changes.
2023-04-06 18:38:11 +02:00

23 lines
477 B
LLVM

; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt < %s -passes=instcombine -S | FileCheck %s
define i1 @PR2539_A(i1 %A) {
; CHECK-LABEL: @PR2539_A(
; CHECK-NEXT: [[C:%.*]] = xor i1 [[A:%.*]], true
; CHECK-NEXT: ret i1 [[C]]
;
%B = zext i1 %A to i32
%C = icmp slt i32 %B, 1
ret i1 %C
}
define i1 @PR2539_B(i1 zeroext %b) {
; CHECK-LABEL: @PR2539_B(
; CHECK-NEXT: ret i1 false
;
%cmp = icmp slt i1 %b, true
ret i1 %cmp
}