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

25 lines
537 B
LLVM

; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt < %s -passes=instcombine -S | FileCheck %s
; Provide legal integer types.
target datalayout = "n8:16:32:64"
define void @PR21651() {
; CHECK-LABEL: @PR21651(
; CHECK-NEXT: switch i1 false, label [[OUT:%.*]] [
; CHECK-NEXT: i1 false, label [[OUT]]
; CHECK-NEXT: i1 true, label [[OUT]]
; CHECK-NEXT: ]
; CHECK: out:
; CHECK-NEXT: ret void
;
switch i2 0, label %out [
i2 0, label %out
i2 1, label %out
]
out:
ret void
}