Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / InstSimplify / distribute.ll
blobb7eead7c92a1717c95d4155fc3fb63de47942644
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -passes=instsimplify -S | FileCheck %s
4 ; %result = x & (1 ^ sel) = (x & 1) ^ (x & sel)
5 ;         = x ^ (select cond, false, false)
6 ;         = x ^ false = x
8 define i1 @f(i1 %cond, i1 noundef %x, i1 %y, i1 %z) {
9 ; CHECK-LABEL: @f(
10 ; CHECK-NEXT:    ret i1 [[X:%.*]]
12   %notx = xor i1 %x, 1
13   %lhs = and i1 %notx, %y
14   %rhs = and i1 %notx, %z
15   %sel = select i1 %cond, i1 %lhs, i1 %rhs
16   %op1 = xor i1 1, %sel
17   %result = and i1 %x, %op1
18   ret i1 %result
21 define i1 @f_dontfold(i1 %cond, i1 %x, i1 %y, i1 %z) {
22 ; CHECK-LABEL: @f_dontfold(
23 ; CHECK-NEXT:    ret i1 [[X:%.*]]
25   %notx = xor i1 %x, 1
26   %lhs = and i1 %notx, %y
27   %rhs = and i1 %notx, %z
28   %sel = select i1 %cond, i1 %lhs, i1 %rhs
29   %op1 = xor i1 1, %sel
30   %result = and i1 %x, %op1
31   ret i1 %result