diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-21 17:20:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-21 17:20:12 +0000 |
commit | 9932bcddfcb6693d24165f08e2809a9415a99b0d (patch) | |
tree | 86b78282780f37dfafc52925d7153edd74180005 | |
parent | 2b905fdb814473b34594e154603a670118b35e8a (diff) |
Shuffle testcases around
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4807 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/ExecutionEngine/test-phi.ll (renamed from test/Jello/test4.ll) | 0 | ||||
-rw-r--r-- | test/Jello/test0.ll | 7 | ||||
-rw-r--r-- | test/Jello/test1.ll | 4 | ||||
-rw-r--r-- | test/Jello/test2.ll | 5 |
4 files changed, 0 insertions, 16 deletions
diff --git a/test/Jello/test4.ll b/test/ExecutionEngine/test-phi.ll index 11aacc10fb..11aacc10fb 100644 --- a/test/Jello/test4.ll +++ b/test/ExecutionEngine/test-phi.ll diff --git a/test/Jello/test0.ll b/test/Jello/test0.ll deleted file mode 100644 index 4e2d10a330..0000000000 --- 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 142f2e8123..0000000000 --- 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 f5d1a4ee36..0000000000 --- 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 -} |