summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/2003-01-04-LoopTest.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-01-13 01:03:16 +0000
committerChris Lattner <sabre@nondot.org>2003-01-13 01:03:16 +0000
commit4a8068f19a521f5b9d940e015985dadf9f7676cf (patch)
treeaac86fc774f6391c07e29f50c39fd1c61e48a0c7 /test/ExecutionEngine/2003-01-04-LoopTest.ll
parenta960d95253be892d5f2e3017ba5df989c247a0c1 (diff)
downloadllvm-4a8068f19a521f5b9d940e015985dadf9f7676cf.tar.gz
llvm-4a8068f19a521f5b9d940e015985dadf9f7676cf.tar.bz2
llvm-4a8068f19a521f5b9d940e015985dadf9f7676cf.tar.xz
New testcases
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5261 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ExecutionEngine/2003-01-04-LoopTest.ll')
-rw-r--r--test/ExecutionEngine/2003-01-04-LoopTest.ll22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/ExecutionEngine/2003-01-04-LoopTest.ll b/test/ExecutionEngine/2003-01-04-LoopTest.ll
new file mode 100644
index 0000000000..4aedd2dbf3
--- /dev/null
+++ b/test/ExecutionEngine/2003-01-04-LoopTest.ll
@@ -0,0 +1,22 @@
+implementation
+
+int %main() {
+ call int %mylog(int 4)
+ ret int 0
+}
+
+internal int %mylog(int %num) {
+bb0: ; No predecessors!
+ br label %bb2
+
+bb2:
+ %reg112 = phi int [ 10, %bb2 ], [ 1, %bb0 ]
+ %cann-indvar = phi int [ %cann-indvar, %bb2 ], [0, %bb0]
+ %reg114 = add int %reg112, 1
+ %cond222 = setlt int %reg114, %num
+ br bool %cond222, label %bb2, label %bb3
+
+bb3: ; preds = %bb2, %bb0
+ ret int %reg114
+}
+