diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-13 20:31:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-13 20:31:48 +0000 |
commit | 2150eb9f6fcf727f00c4958bac5e41d29de4eddc (patch) | |
tree | 3098264a5372247274abf710270806ca603f5e01 /llvm/test/Transforms/LoopUnroll | |
parent | 033a654dee637690dd6f67ac4aabc501b6d51b44 (diff) | |
download | bcm5719-llvm-2150eb9f6fcf727f00c4958bac5e41d29de4eddc.tar.gz bcm5719-llvm-2150eb9f6fcf727f00c4958bac5e41d29de4eddc.zip |
remove a test that depends on -debug.
llvm-svn: 66937
Diffstat (limited to 'llvm/test/Transforms/LoopUnroll')
-rw-r--r-- | llvm/test/Transforms/LoopUnroll/partial.ll | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/llvm/test/Transforms/LoopUnroll/partial.ll b/llvm/test/Transforms/LoopUnroll/partial.ll deleted file mode 100644 index 26da82b3b2b..00000000000 --- a/llvm/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 ] ; <i32> [#uses=1] - %indvar.next = add i32 %indvar, 1 ; <i32> [#uses=2] - %exitcond = icmp ne i32 %indvar.next, 100 ; <i1> [#uses=1] - br i1 %exitcond, label %no_exit, label %loopexit -loopexit: ; preds = %no_exit - ret i32 0 -} |