summaryrefslogtreecommitdiff
path: root/polly/test/CodeGen/single_loop.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/CodeGen/single_loop.ll')
-rw-r--r--polly/test/CodeGen/single_loop.ll17
1 files changed, 8 insertions, 9 deletions
diff --git a/polly/test/CodeGen/single_loop.ll b/polly/test/CodeGen/single_loop.ll
index bd5a5724349f..68cc498b43e0 100644
--- a/polly/test/CodeGen/single_loop.ll
+++ b/polly/test/CodeGen/single_loop.ll
@@ -25,20 +25,19 @@ target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f3
define i32 @main() nounwind {
entry:
- %A = alloca [1024 x i32], align 4 ; <[1024 x i32]*> [#uses=3]
- %arraydecay = getelementptr inbounds [1024 x i32], [1024 x i32]* %A, i32 0, i32 0 ; <i32*> [#uses=1]
- %conv = bitcast i32* %arraydecay to i8* ; <i8*> [#uses=1]
- call void @llvm.memset.p0i8.i64(i8* %conv, i8 0, i64 4096, i32 1, i1 false)
+ %A = alloca [1024 x i32], align 4 ; <ptr> [#uses=3]
+ %arraydecay = getelementptr inbounds [1024 x i32], ptr %A, i32 0, i32 0 ; <ptr> [#uses=1]
+ call void @llvm.memset.p0.i64(ptr %arraydecay, i8 0, i64 4096, i32 1, i1 false)
br label %for.cond
for.cond: ; preds = %for.inc, %entry
%indvar1 = phi i64 [ %indvar.next2, %for.inc ], [ 0, %entry ] ; <i64> [#uses=3]
- %arrayidx = getelementptr [1024 x i32], [1024 x i32]* %A, i64 0, i64 %indvar1 ; <i32*> [#uses=1]
+ %arrayidx = getelementptr [1024 x i32], ptr %A, i64 0, i64 %indvar1 ; <ptr> [#uses=1]
%exitcond = icmp ne i64 %indvar1, 1024 ; <i1> [#uses=1]
br i1 %exitcond, label %for.body, label %for.end
for.body: ; preds = %for.cond
- store i32 1, i32* %arrayidx
+ store i32 1, ptr %arrayidx
br label %for.inc
for.inc: ; preds = %for.body
@@ -50,13 +49,13 @@ for.end: ; preds = %for.cond
for.cond5: ; preds = %for.inc07, %for.end
%indvar = phi i64 [ %indvar.next, %for.inc07 ], [ 0, %for.end ] ; <i64> [#uses=3]
- %arrayidx13 = getelementptr [1024 x i32], [1024 x i32]* %A, i64 0, i64 %indvar ; <i32*> [#uses=1]
+ %arrayidx13 = getelementptr [1024 x i32], ptr %A, i64 0, i64 %indvar ; <ptr> [#uses=1]
%i.1 = trunc i64 %indvar to i32 ; <i32> [#uses=1]
%cmp7 = icmp slt i32 %i.1, 1024 ; <i1> [#uses=1]
br i1 %cmp7, label %for.body9, label %for.end20
for.body9: ; preds = %for.cond5
- %tmp14 = load i32, i32* %arrayidx13 ; <i32> [#uses=1]
+ %tmp14 = load i32, ptr %arrayidx13 ; <i32> [#uses=1]
%cmp15 = icmp ne i32 %tmp14, 1 ; <i1> [#uses=1]
br i1 %cmp15, label %if.then, label %if.end
@@ -78,7 +77,7 @@ return: ; preds = %for.end20, %if.then
ret i32 %retval.0
}
-declare void @llvm.memset.p0i8.i64(i8* nocapture, i8, i64, i32, i1) nounwind
+declare void @llvm.memset.p0.i64(ptr nocapture, i8, i64, i32, i1) nounwind
; CHECK: for (int c0 = 0; c0 <= 1023; c0 += 1)
; CHECK: Stmt_for_body(c0);