Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / IndVarSimplify / pr24952.ll
blob60412d23bf5dbea58aa294f66e3276fc5ad6f6e6
1 ; RUN: opt -passes=indvars -S < %s | FileCheck %s
3 declare void @use(i1)
5 define void @f() {
6 ; CHECK-LABEL: @f(
7  entry:
8   %x = alloca i32
9   %y = alloca i32
10   br label %loop
12  loop:
13   %iv = phi i32 [ 0, %entry ], [ %iv.inc, %loop ]
14   %iv.inc = add i32 %iv, 1
16   %x.gep = getelementptr i32, ptr %x, i32 %iv
17   %eql = icmp eq ptr %x.gep, %y
18 ; CHECK-NOT: @use(i1 true)
19   call void @use(i1 %eql)
21   ; %be.cond deliberately 'false' -- we want want the trip count to be 0.
22   %be.cond = icmp ult i32 %iv, 0
23   br i1 %be.cond, label %loop, label %leave
25  leave:
26   ret void