From 9e92152f77f25f58223232f0e20631c11b432af4 Mon Sep 17 00:00:00 2001 From: Andrew Trick Date: Wed, 20 Jul 2011 02:14:37 +0000 Subject: [PATCH] indvars test case for r135558. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135559 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/IndVarSimplify/no-iv-rewrite.ll | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/Transforms/IndVarSimplify/no-iv-rewrite.ll b/test/Transforms/IndVarSimplify/no-iv-rewrite.ll index bb951c6f182..a6073c2f8d3 100644 --- a/test/Transforms/IndVarSimplify/no-iv-rewrite.ll +++ b/test/Transforms/IndVarSimplify/no-iv-rewrite.ll @@ -330,9 +330,16 @@ entry: %first = getelementptr inbounds %structIF* %base, i64 0, i32 0 br label %loop +; CHECK: loop: +; CHECK: phi %structIF* +; CHECK: phi i32* +; CHECK: getelementptr inbounds +; CHECK: getelementptr inbounds +; CHECK: exit: loop: %ptr.iv = phi %structIF* [ %ptr.inc, %latch ], [ %base, %entry ] %next = phi i32* [ %next.inc, %latch ], [ %first, %entry ] + store i32 4, i32* %next br i1 undef, label %latch, label %exit latch: ; preds = %for.inc50.i