new testcase for cananonicalization of subtracts

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10581 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-12-22 05:24:45 +00:00
parent 18b3c97bc7
commit 14e1726b2e

View File

@ -0,0 +1,12 @@
; RUN: llvm-as < %s | opt -indvars | llvm-dis | grep indvar
%G = global long 0
void %test(long %V) {
br label %Loop
Loop:
%X = phi long [1, %0], [%X.next, %Loop]
%X.next = sub long %X, %V
store long %X, long* %G
br label %Loop
}