aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/CodeGen/SparcV8/2006-01-22-BitConvertLegalize.ll12
-rw-r--r--test/CodeGen/SparcV8/basictest.ll6
-rw-r--r--test/CodeGen/SparcV8/ctpop.ll11
-rw-r--r--test/CodeGen/SparcV8/dg.exp3
-rw-r--r--test/CodeGen/SparcV8/xnor.ll14
5 files changed, 0 insertions, 46 deletions
diff --git a/test/CodeGen/SparcV8/2006-01-22-BitConvertLegalize.ll b/test/CodeGen/SparcV8/2006-01-22-BitConvertLegalize.ll
deleted file mode 100644
index 23ae0e40cc..0000000000
--- a/test/CodeGen/SparcV8/2006-01-22-BitConvertLegalize.ll
+++ /dev/null
@@ -1,12 +0,0 @@
-; RUN: llvm-as < %s | llc -march=sparcv8
-
-void %execute_list() {
- %tmp.33.i = div float 0.000000e+00, 0.000000e+00 ; <float> [#uses=1]
- %tmp.37.i = mul float 0.000000e+00, %tmp.33.i ; <float> [#uses=1]
- %tmp.42.i = add float %tmp.37.i, 0.000000e+00 ; <float> [#uses=1]
- call void %gl_EvalCoord1f( float %tmp.42.i )
- ret void
-}
-
-declare void %gl_EvalCoord1f( float)
-
diff --git a/test/CodeGen/SparcV8/basictest.ll b/test/CodeGen/SparcV8/basictest.ll
deleted file mode 100644
index 043af046ea..0000000000
--- a/test/CodeGen/SparcV8/basictest.ll
+++ /dev/null
@@ -1,6 +0,0 @@
-; RUN: llvm-as < %s | llc -march=sparcv8
-
-int %test(int %X) {
- %tmp.1 = add int %X, 1 ; <int> [#uses=1]
- ret int %tmp.1
-}
diff --git a/test/CodeGen/SparcV8/ctpop.ll b/test/CodeGen/SparcV8/ctpop.ll
deleted file mode 100644
index d59e422237..0000000000
--- a/test/CodeGen/SparcV8/ctpop.ll
+++ /dev/null
@@ -1,11 +0,0 @@
-; RUN: llvm-as < %s | llc -march=sparcv8 -mattr=-v9 &&
-; RUN: llvm-as < %s | llc -march=sparcv8 -mattr=v9 -enable-sparc-v9-insts &&
-; RUN: llvm-as < %s | llc -march=sparcv8 -mattr=-v9 | not grep popc &&
-; RUN: llvm-as < %s | llc -march=sparcv8 -mattr=v9 -enable-sparc-v9-insts | grep popc
-
-declare uint %llvm.ctpop.i32(uint)
-uint %test(uint %X) {
- %Y = call uint %llvm.ctpop.i32(uint %X)
- ret uint %Y
-}
-
diff --git a/test/CodeGen/SparcV8/dg.exp b/test/CodeGen/SparcV8/dg.exp
deleted file mode 100644
index e326ea721c..0000000000
--- a/test/CodeGen/SparcV8/dg.exp
+++ /dev/null
@@ -1,3 +0,0 @@
-load_lib llvm-dg.exp
-
-llvm-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,llx,c,cpp,tr}]] $objdir $srcdir $subdir $target_triplet $llvmgcc $llvmgxx $prcontext
diff --git a/test/CodeGen/SparcV8/xnor.ll b/test/CodeGen/SparcV8/xnor.ll
deleted file mode 100644
index 0fa5330935..0000000000
--- a/test/CodeGen/SparcV8/xnor.ll
+++ /dev/null
@@ -1,14 +0,0 @@
-; RUN: llvm-as < %s | llc -march=sparcv8 &&
-; RUN: llvm-as < %s | llc -march=sparcv8 | grep xnor | wc -l | grep 2
-
-int %test1(int %X, int %Y) {
- %A = xor int %X, %Y
- %B = xor int %A, -1
- ret int %B
-}
-
-int %test2(int %X, int %Y) {
- %A = xor int %X, -1
- %B = xor int %A, %Y
- ret int %B
-}