blob: f783b8305e058bebd0ac357f94029e2b0375519c [file] [log] [blame]
Dan Gohmana7726c32009-06-16 19:52:01 +00001; RUN: llvm-as < %s | opt -iv-users -analyze | grep store
2
3define fastcc void @foo() nounwind {
4entry:
5 br label %loop
6
7loop:
8 %i = phi i32 [ 0, %entry ], [ %t2, %loop ]
9 %t0 = add i32 %i, 9
10 %t1 = and i32 %t0, 9
11 store i32 %t1, i32* null
12 %t2 = add i32 %i, 8
13 br label %loop
14}