Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / CodeGen / X86 / pr32588.ll
blob5b875cdc991f284fd676de38a0187928048986db
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mcpu=generic -mtriple=x86_64-linux | FileCheck %s
4 @c = external local_unnamed_addr global i32, align 4
5 @b = external local_unnamed_addr global i32, align 4
6 @d = external local_unnamed_addr global i32, align 4
8 define void @fn1() {
9 ; CHECK-LABEL: fn1:
10 ; CHECK:       # %bb.0:
11 ; CHECK-NEXT:    cmpl $1, {{.*}}(%rip)
12 ; CHECK-NEXT:    sbbl %eax, %eax
13 ; CHECK-NEXT:    andl $1, %eax
14 ; CHECK-NEXT:    movl %eax, {{.*}}(%rip)
15 ; CHECK-NEXT:    retq
16   %t0 = load i32, i32* @c, align 4
17   %tobool1 = icmp eq i32 %t0, 0
18   %xor = zext i1 %tobool1 to i32
19   %t1 = load i32, i32* @b, align 4
20   %tobool2 = icmp ne i32 %t1, 0
21   %tobool4 = icmp ne i32 undef, 0
22   %t2 = and i1 %tobool4, %tobool2
23   %sub = sext i1 %t2 to i32
24   %div = sdiv i32 %sub, 2
25   %add = add nsw i32 %div, %xor
26   store i32 %add, i32* @d, align 4
27   ret void