1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

a regtest

llvm-svn: 20496
This commit is contained in:
Chris Lattner 2005-03-06 21:47:40 +00:00
parent de7a8d1e1c
commit 84be025747

View File

@ -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
}