From a090f1f83c4eca9fdf38a3e29c1f050f5426281c Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sat, 2 Dec 2006 20:39:25 +0000 Subject: [PATCH] Rearrange code so that llvm-upgrade doesn't break the optimization this test is trying to verify. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32135 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/loop-hoist.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CodeGen/X86/loop-hoist.ll b/test/CodeGen/X86/loop-hoist.ll index 0eb20a52f5e..3ee0cbc4695 100644 --- a/test/CodeGen/X86/loop-hoist.ll +++ b/test/CodeGen/X86/loop-hoist.ll @@ -13,7 +13,7 @@ entry: cond_true: ; preds = %cond_true, %entry %indvar = phi uint [ 0, %entry ], [ %indvar.next, %cond_true ] ; [#uses=3] %i.0.0 = cast uint %indvar to int ; [#uses=1] - %tmp = getelementptr [0 x int]* %Arr, int 0, uint %indvar ; [#uses=1] + %tmp = getelementptr [0 x int]* %Arr, int 0, int %i.0.0 store int %i.0.0, int* %tmp %indvar.next = add uint %indvar, 1 ; [#uses=2] %exitcond = seteq uint %indvar.next, %N ; [#uses=1] -- 2.34.1