brintos

brintos / llvm-project-archived public Read only

0
0
Text · 657 B · ac18be3 Raw
23 lines · plain
1; Don't reduce the byte access to P[i], at least not on targets that 2; support an efficient 'mem[r1+r2]' addressing mode.3 4; RUN: opt < %s -loop-reduce -disable-output5 6 7declare i1 @pred(i32)8 9define void @test(ptr %PTR) {10; <label>:011	br label %Loop12Loop:		; preds = %Loop, %013	%INDVAR = phi i32 [ 0, %0 ], [ %INDVAR2, %Loop ]		; <i32> [#uses=2]14	%STRRED = getelementptr i8, ptr %PTR, i32 %INDVAR		; <ptr> [#uses=1]15	store i8 0, ptr %STRRED16	%INDVAR2 = add i32 %INDVAR, 1		; <i32> [#uses=2]17        ;; cannot eliminate indvar18	%cond = call i1 @pred( i32 %INDVAR2 )		; <i1> [#uses=1]19	br i1 %cond, label %Loop, label %Out20Out:		; preds = %Loop21	ret void22}23