1; RUN: opt %loadPolly %defaultOpts -polly-cloog -analyze %s | FileCheck %s
2; RUN: opt %loadPolly %defaultOpts %s | lli
3; RUN: opt %loadPolly %defaultOpts -polly-codegen %s | lli
4; ModuleID = 'single_do_loop_scev_replace.s'
5target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
6target triple = "x86_64-unknown-linux-gnu"
7
8%struct._IO_FILE = type { i32, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, i8*, %struct._IO_marker*, %struct._IO_FILE*, i32, i32, i64, i16, i8, [1 x i8], i8*, i64, i8*, i8*, i8*, i8*, i64, i32, [20 x i8] }
9%struct._IO_marker = type { %struct._IO_marker*, %struct._IO_FILE*, i32 }
10
11@A = common global [40 x i32] zeroinitializer, align 4 ; <[40 x i32]*> [#uses=3]
12@stdout = external global %struct._IO_FILE*       ; <%struct._IO_FILE**> [#uses=1]
13@.str = private constant [11 x i8] c"Output %d\0A\00" ; <[11 x i8]*> [#uses=1]
14
15define void @single_do_loop_scev_replace() nounwind {
16entry:
17  call void @llvm.memory.barrier(i1 true, i1 true, i1 true, i1 true, i1 false)
18  br label %do.body
19
20do.body:                                          ; preds = %do.cond, %entry
21  %indvar = phi i64 [ %indvar.next, %do.cond ], [ 0, %entry ] ; <i64> [#uses=3]
22  %tmp = mul i64 %indvar, 2                       ; <i64> [#uses=1]
23  %arrayidx = getelementptr [40 x i32]* @A, i64 0, i64 %tmp ; <i32*> [#uses=1]
24  %i.0 = trunc i64 %indvar to i32                 ; <i32> [#uses=1]
25  br label %do.cond
26
27do.cond:                                          ; preds = %do.body
28  volatile store i32 %i.0, i32* %arrayidx
29  %indvar.next = add i64 %indvar, 1               ; <i64> [#uses=2]
30  %exitcond = icmp ne i64 %indvar.next, 20        ; <i1> [#uses=1]
31  br i1 %exitcond, label %do.body, label %do.end
32
33do.end:                                           ; preds = %do.cond
34  call void @llvm.memory.barrier(i1 true, i1 true, i1 true, i1 true, i1 false)
35  ret void
36}
37
38declare void @llvm.memory.barrier(i1, i1, i1, i1, i1) nounwind
39
40define i32 @main() nounwind {
41entry:
42  call void @single_do_loop_scev_replace()
43  %tmp = load %struct._IO_FILE** @stdout          ; <%struct._IO_FILE*> [#uses=1]
44  %tmp1 = volatile load i32* getelementptr inbounds ([40 x i32]* @A, i32 0, i32 0) ; <i32> [#uses=1]
45  %call = call i32 (%struct._IO_FILE*, i8*, ...)* @fprintf(%struct._IO_FILE* %tmp, i8* getelementptr inbounds ([11 x i8]* @.str, i32 0, i32 0), i32 %tmp1) ; <i32> [#uses=0]
46  %tmp2 = volatile load i32* getelementptr inbounds ([40 x i32]* @A, i32 0, i64 38) ; <i32> [#uses=1]
47  %cmp = icmp eq i32 %tmp2, 19                    ; <i1> [#uses=1]
48  br i1 %cmp, label %if.then, label %if.else
49
50if.then:                                          ; preds = %entry
51  br label %return
52
53if.else:                                          ; preds = %entry
54  br label %return
55
56return:                                           ; preds = %if.else, %if.then
57  %retval.0 = phi i32 [ 0, %if.then ], [ 1, %if.else ] ; <i32> [#uses=1]
58  ret i32 %retval.0
59}
60
61declare i32 @fprintf(%struct._IO_FILE*, i8*, ...)
62
63; CHECK:   for (c2=0;c2<=19;c2++) {
64; CHECK:     Stmt_do_cond(c2);
65; CHECK:   }
66
67