Shuffle testcases around
authorChris Lattner <sabre@nondot.org>
Thu, 21 Nov 2002 17:20:12 +0000 (17:20 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 21 Nov 2002 17:20:12 +0000 (17:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4807 91177308-0d34-0410-b5e6-96231b3b80d8

test/ExecutionEngine/test-phi.ll [new file with mode: 0644]
test/Jello/test0.ll [deleted file]
test/Jello/test1.ll [deleted file]
test/Jello/test2.ll [deleted file]
test/Jello/test4.ll [deleted file]

diff --git a/test/ExecutionEngine/test-phi.ll b/test/ExecutionEngine/test-phi.ll
new file mode 100644 (file)
index 0000000..11aacc1
--- /dev/null
@@ -0,0 +1,10 @@
+; test phi node
+void %main() {
+       br label %Test
+Test:
+       %X = phi int [7, %0], [%Y, %Dead]
+       ret void
+Dead:
+       %Y = shr int 12, ubyte 4
+       br label %Test
+}
diff --git a/test/Jello/test0.ll b/test/Jello/test0.ll
deleted file mode 100644 (file)
index 4e2d10a..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-; test ret
-void %main() {
-BB0:
-       %X = add int 1, 2
-       %Y = add int %X, %X
-       ret void
-}
diff --git a/test/Jello/test1.ll b/test/Jello/test1.ll
deleted file mode 100644 (file)
index 142f2e8..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-; test ret of an integer
-int %main() {
-       ret int 0
-}
diff --git a/test/Jello/test2.ll b/test/Jello/test2.ll
deleted file mode 100644 (file)
index f5d1a4e..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-; test a simple add
-int %main() {
-       %X = add int 1, 2
-       ret int %X
-}
diff --git a/test/Jello/test4.ll b/test/Jello/test4.ll
deleted file mode 100644 (file)
index 11aacc1..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-; test phi node
-void %main() {
-       br label %Test
-Test:
-       %X = phi int [7, %0], [%Y, %Dead]
-       ret void
-Dead:
-       %Y = shr int 12, ubyte 4
-       br label %Test
-}