From 9932bcddfcb6693d24165f08e2809a9415a99b0d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 21 Nov 2002 17:20:12 +0000 Subject: [PATCH] Shuffle testcases around git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4807 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/{Jello/test4.ll => ExecutionEngine/test-phi.ll} | 0 test/Jello/test0.ll | 7 ------- test/Jello/test1.ll | 4 ---- test/Jello/test2.ll | 5 ----- 4 files changed, 16 deletions(-) rename test/{Jello/test4.ll => ExecutionEngine/test-phi.ll} (100%) delete mode 100644 test/Jello/test0.ll delete mode 100644 test/Jello/test1.ll delete mode 100644 test/Jello/test2.ll diff --git a/test/Jello/test4.ll b/test/ExecutionEngine/test-phi.ll similarity index 100% rename from test/Jello/test4.ll rename to test/ExecutionEngine/test-phi.ll diff --git a/test/Jello/test0.ll b/test/Jello/test0.ll deleted file mode 100644 index 4e2d10a3308..00000000000 --- a/test/Jello/test0.ll +++ /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 index 142f2e81236..00000000000 --- a/test/Jello/test1.ll +++ /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 index f5d1a4ee360..00000000000 --- a/test/Jello/test2.ll +++ /dev/null @@ -1,5 +0,0 @@ -; test a simple add -int %main() { - %X = add int 1, 2 - ret int %X -}