mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
a regtest
llvm-svn: 20496
This commit is contained in:
parent
de7a8d1e1c
commit
84be025747
@ -0,0 +1,19 @@
|
|||||||
|
; Check that this test makes INDVAR and related stuff dead.
|
||||||
|
; RUN: llvm-as < %s | opt -loop-reduce | llvm-dis | not grep INDVAR
|
||||||
|
|
||||||
|
declare bool %pred()
|
||||||
|
|
||||||
|
void %test(int* %P) {
|
||||||
|
br label %Loop
|
||||||
|
Loop:
|
||||||
|
%INDVAR = phi int [0, %0], [%INDVAR2, %Loop]
|
||||||
|
|
||||||
|
%STRRED = getelementptr int* %P, int %INDVAR
|
||||||
|
store int 0, int* %STRRED
|
||||||
|
|
||||||
|
%INDVAR2 = add int %INDVAR, 1
|
||||||
|
%cond = call bool %pred()
|
||||||
|
br bool %cond, label %Loop, label %Out
|
||||||
|
Out:
|
||||||
|
ret void
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user