From: Chris Lattner Date: Tue, 3 Apr 2007 00:13:16 +0000 (+0000) Subject: new testcase, where we should use a negative stride X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=baf21999a95684d68c96e34c4ac75def9e02d2d6;p=oota-llvm.git new testcase, where we should use a negative stride git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35608 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/ARM/arm-negative-stride.ll b/test/CodeGen/ARM/arm-negative-stride.ll new file mode 100644 index 00000000000..272f2a597a2 --- /dev/null +++ b/test/CodeGen/ARM/arm-negative-stride.ll @@ -0,0 +1,20 @@ +; RUN: llvm-as < %s | llc -march=arm | grep -F 'str r1, [r3, -r0, lsl #2]' + +define void @test(i32* %P, i32 %A, i32 %i) { +entry: + icmp eq i32 %i, 0 ; :0 [#uses=1] + br i1 %0, label %return, label %bb + +bb: ; preds = %bb, %entry + %indvar = phi i32 [ 0, %entry ], [ %indvar.next, %bb ] ; [#uses=2] + %i_addr.09.0 = sub i32 %i, %indvar ; [#uses=1] + %tmp2 = getelementptr i32* %P, i32 %i_addr.09.0 ; [#uses=1] + store i32 %A, i32* %tmp2 + %indvar.next = add i32 %indvar, 1 ; [#uses=2] + icmp eq i32 %indvar.next, %i ; :1 [#uses=1] + br i1 %1, label %return, label %bb + +return: ; preds = %bb, %entry + ret void +} +