brintos

brintos / llvm-project-archived public Read only

0
0
Text · 543 B · 78c8e86 Raw
13 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 52; RUN: opt -S -passes=instcombine < %s 2>&1 | FileCheck %s3 4define <2 x i1> @pr98435(<2 x i1> %val) {5; CHECK-LABEL: define <2 x i1> @pr98435(6; CHECK-SAME: <2 x i1> [[VAL:%.*]]) {7; CHECK-NEXT:    [[VAL1:%.*]] = select <2 x i1> <i1 undef, i1 true>, <2 x i1> splat (i1 true), <2 x i1> [[VAL]]8; CHECK-NEXT:    ret <2 x i1> [[VAL1]]9;10  %val1 = select <2 x i1> <i1 undef, i1 true>, <2 x i1> <i1 true, i1 true>, <2 x i1> %val11  ret <2 x i1> %val112}13