mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
4572ce85b0
llvm-svn: 33296
23 lines
579 B
LLVM
23 lines
579 B
LLVM
; Check that this test makes INDVAR and related stuff dead, because P[indvar]
|
|
; gets reduced, making INDVAR dead.
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -loop-reduce | llvm-dis | not grep INDVAR
|
|
|
|
declare bool %pred()
|
|
declare int %getidx()
|
|
|
|
void %test([10000 x int]* %P) {
|
|
br label %Loop
|
|
Loop:
|
|
%INDVAR = phi int [0, %0], [%INDVAR2, %Loop]
|
|
%idx = call int %getidx()
|
|
%STRRED = getelementptr [10000 x int]* %P, int %INDVAR, int %idx
|
|
store int 0, int* %STRRED
|
|
|
|
%INDVAR2 = add int %INDVAR, 1
|
|
%cond = call bool %pred()
|
|
br bool %cond, label %Loop, label %Out
|
|
Out:
|
|
ret void
|
|
}
|