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
6 ; don't replace 'cond' by 'len' in the home block ('bb') that
8 define void @test1(i32 %len) {
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
22 ; CHECK: icmp eq i32 %cond, 8
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) {
30 %0 = call i32 @bar(i32 %len);
31 %cmp = icmp ult i32 %len, 4
32 br i1 %cmp, label %bb, label %b1
34 %cond = select i1 %cmp, i32 %len, i32 8
35 %cmp11 = icmp eq i32 %cond, 8
36 br i1 %cmp11, label %b0, label %b1
39 call void @foo(i32 %len)
43 ; CHECK: phi i32 [ %cond, %bb ], [ undef, %b0 ], [ %0, %entry ]
44 %1 = phi i32 [ %cond, %bb ], [ undef, %b0 ], [ %0, %entry ]
48 call void @foo(i32 %1)