blob: f1caf142cfc1d22a0d8b93ef936fd91a8ac3afca [file] [log] [blame]
Dan Gohman559254b2009-06-17 20:56:26 +00001; RUN: llvm-as < %s | opt -iv-users -analyze -disable-output | grep store
Dan Gohman61ffa8e2009-06-16 19:52:01 +00002
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}