Taints the non-acquire RMW's store address with the load part
[oota-llvm.git] / test / Transforms / InstCombine / pr21210.ll
1 ; RUN: opt < %s -mtriple=x86_64-unknown-linux-gnu -instcombine -S | FileCheck %s
2 ; Checks that the select-icmp optimization is safe in two cases
3 declare void @foo(i32)
4 declare i32 @bar(i32)
5
6 ; don't replace 'cond' by 'len' in the home block ('bb') that
7 ; contains the select
8 define void @test1(i32 %len) {
9 entry:
10   br label %bb
11
12 bb:
13   %cmp = icmp ult i32 %len, 8
14   %cond = select i1 %cmp, i32 %len, i32 8
15   call void @foo(i32 %cond)
16   %cmp11 = icmp eq i32 %cond, 8
17   br i1 %cmp11, label %for.end, label %bb
18
19 for.end:
20   ret void
21 ; CHECK: select
22 ; CHECK: icmp eq i32 %cond, 8
23 }
24
25 ; don't replace 'cond' by 'len' in a block ('b1') that dominates all uses
26 ; of the select outside the home block ('bb'), but can be reached from the home
27 ; block on another path ('bb -> b0 -> b1')
28 define void @test2(i32 %len) {
29 entry:
30   %0 = call i32 @bar(i32 %len);
31   %cmp = icmp ult i32 %len, 4
32   br i1 %cmp, label %bb, label %b1
33 bb:
34   %cond = select i1 %cmp, i32 %len, i32 8
35   %cmp11 = icmp eq i32 %cond, 8
36   br i1 %cmp11, label %b0, label %b1
37
38 b0:
39   call void @foo(i32 %len)
40   br label %b1
41
42 b1:
43 ; CHECK: phi i32 [ %cond, %bb ], [ undef, %b0 ], [ %0, %entry ]
44   %1 = phi i32 [ %cond, %bb ], [ undef, %b0 ], [ %0, %entry ]
45   br label %ret
46
47 ret:
48   call void @foo(i32 %1)
49   ret void
50 }