aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/Transforms/InstCombine/pr98435.ll
blob: 78c8e860bed72bb1eff4d016f0a1a1613b6f9dbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
; RUN: opt -S -passes=instcombine < %s 2>&1 | FileCheck %s

define <2 x i1> @pr98435(<2 x i1> %val) {
; CHECK-LABEL: define <2 x i1> @pr98435(
; CHECK-SAME: <2 x i1> [[VAL:%.*]]) {
; CHECK-NEXT:    [[VAL1:%.*]] = select <2 x i1> <i1 undef, i1 true>, <2 x i1> splat (i1 true), <2 x i1> [[VAL]]
; CHECK-NEXT:    ret <2 x i1> [[VAL1]]
;
  %val1 = select <2 x i1> <i1 undef, i1 true>, <2 x i1> <i1 true, i1 true>, <2 x i1> %val
  ret <2 x i1> %val1
}