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 -}