2009-11-12 07:35:05 +00:00
|
|
|
; RUN: llc < %s -mtriple=thumbv7-apple-darwin10 -relocation-model=pic | FileCheck %s
|
|
|
|
; rdar://7387640
|
|
|
|
|
2010-02-12 10:34:29 +00:00
|
|
|
; This now reduces to a single induction variable.
|
|
|
|
|
2009-11-12 07:35:05 +00:00
|
|
|
@G = external global i32 ; <i32*> [#uses=2]
|
|
|
|
@array = external global i32* ; <i32**> [#uses=1]
|
|
|
|
|
2010-06-17 15:18:27 +00:00
|
|
|
define void @t() nounwind optsize {
|
2013-07-14 06:24:09 +00:00
|
|
|
; CHECK-LABEL: t:
|
2011-07-08 00:24:06 +00:00
|
|
|
; CHECK: mov{{.*}}, #1000
|
2009-11-12 07:35:05 +00:00
|
|
|
entry:
|
|
|
|
%.pre = load i32* @G, align 4 ; <i32> [#uses=1]
|
|
|
|
br label %bb
|
|
|
|
|
|
|
|
bb: ; preds = %bb, %entry
|
2010-04-17 16:29:15 +00:00
|
|
|
; CHECK: LBB0_1:
|
2012-04-05 20:30:20 +00:00
|
|
|
; CHECK: subs [[R2:r[0-9]+]], #1
|
|
|
|
; CHECK: cmp.w [[R2]], #-1
|
|
|
|
; CHECK: bne LBB0_1
|
2010-02-12 10:34:29 +00:00
|
|
|
|
2009-11-12 07:35:05 +00:00
|
|
|
%0 = phi i32 [ %.pre, %entry ], [ %3, %bb ] ; <i32> [#uses=1]
|
|
|
|
%indvar = phi i32 [ 0, %entry ], [ %indvar.next, %bb ] ; <i32> [#uses=2]
|
|
|
|
%tmp5 = sub i32 1000, %indvar ; <i32> [#uses=1]
|
|
|
|
%1 = load i32** @array, align 4 ; <i32*> [#uses=1]
|
|
|
|
%scevgep = getelementptr i32* %1, i32 %tmp5 ; <i32*> [#uses=1]
|
|
|
|
%2 = load i32* %scevgep, align 4 ; <i32> [#uses=1]
|
|
|
|
%3 = add nsw i32 %2, %0 ; <i32> [#uses=2]
|
|
|
|
store i32 %3, i32* @G, align 4
|
|
|
|
%indvar.next = add i32 %indvar, 1 ; <i32> [#uses=2]
|
|
|
|
%exitcond = icmp eq i32 %indvar.next, 1001 ; <i1> [#uses=1]
|
|
|
|
br i1 %exitcond, label %return, label %bb
|
|
|
|
|
|
|
|
return: ; preds = %bb
|
|
|
|
ret void
|
|
|
|
}
|