From: Chris Lattner Date: Thu, 21 Nov 2002 17:20:12 +0000 (+0000) Subject: Shuffle testcases around X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9932bcddfcb6693d24165f08e2809a9415a99b0d;p=oota-llvm.git Shuffle testcases around git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4807 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/ExecutionEngine/test-phi.ll b/test/ExecutionEngine/test-phi.ll new file mode 100644 index 00000000000..11aacc10fbf --- /dev/null +++ b/test/ExecutionEngine/test-phi.ll @@ -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 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 -} diff --git a/test/Jello/test4.ll b/test/Jello/test4.ll deleted file mode 100644 index 11aacc10fbf..00000000000 --- a/test/Jello/test4.ll +++ /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 -}