blob: 03b9f4d8b8d9b0cc4f98b414dfdbc221e463b5b1 [file] [log] [blame]
Andreas Bolka5771ed92009-06-30 02:12:10 +00001; RUN: llvm-as < %s | opt -disable-output -analyze -lda > %t
2; RUN: grep {instructions: 2} %t | count 1
3; RUN: grep {0,1: dependent} %t | count 1
4
5; x[5] = x[6] // with x being a pointer passed as argument
6
7define void @foo(i32* nocapture %xptr) nounwind {
8entry:
9 %x.ld.addr = getelementptr i32* %xptr, i64 6
10 %x.st.addr = getelementptr i32* %xptr, i64 5
11 br label %for.body
12
13for.body:
14 %i = phi i64 [ 0, %entry ], [ %i.next, %for.body ]
15 %x = load i32* %x.ld.addr
16 store i32 %x, i32* %x.st.addr
17 %i.next = add i64 %i, 1
18 %exitcond = icmp eq i64 %i.next, 256
19 br i1 %exitcond, label %for.end, label %for.body
20
21for.end:
22 ret void
23}