From: Chris Lattner Date: Fri, 13 Mar 2009 20:31:48 +0000 (+0000) Subject: remove a test that depends on -debug. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=71503710972ac747e6eaf76877cf1118d2059fce;p=oota-llvm.git remove a test that depends on -debug. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66937 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/LoopUnroll/partial.ll b/test/Transforms/LoopUnroll/partial.ll deleted file mode 100644 index 26da82b3b2b..00000000000 --- a/test/Transforms/LoopUnroll/partial.ll +++ /dev/null @@ -1,15 +0,0 @@ -; RUN: llvm-as < %s | opt -debug -loop-unroll |& grep {will not try to unroll partially because} -; RUN: llvm-as < %s | opt -debug -loop-unroll -unroll-allow-partial |& grep {partially unrolling with count} -; RUN: llvm-as < %s | opt -debug -loop-unroll -unroll-allow-partial -unroll-threshold=3 |& grep {could not unroll partially} - -define i32 @main() { -entry: - br label %no_exit -no_exit: ; preds = %no_exit, %entry - %indvar = phi i32 [ 0, %entry ], [ %indvar.next, %no_exit ] ; [#uses=1] - %indvar.next = add i32 %indvar, 1 ; [#uses=2] - %exitcond = icmp ne i32 %indvar.next, 100 ; [#uses=1] - br i1 %exitcond, label %no_exit, label %loopexit -loopexit: ; preds = %no_exit - ret i32 0 -}