aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-03-03 00:16:23 +0000
committerChris Lattner <sabre@nondot.org>2006-03-03 00:16:23 +0000
commit472c0ebea486237b8df386a142a37bbebc28f19d (patch)
treea31d7f307b8847901a97cc979f89fd08fd3391da /test/CodeGen
parent5b310c3c8be5903c1875387b36eb64aaf4bba836 (diff)
downloadexternal_llvm-472c0ebea486237b8df386a142a37bbebc28f19d.zip
external_llvm-472c0ebea486237b8df386a142a37bbebc28f19d.tar.gz
external_llvm-472c0ebea486237b8df386a142a37bbebc28f19d.tar.bz2
Remove these testcases. These intrinsics are going away
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26478 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r--test/CodeGen/X86/io.llx21
-rw-r--r--test/CodeGen/X86/ioport.llx21
2 files changed, 0 insertions, 42 deletions
diff --git a/test/CodeGen/X86/io.llx b/test/CodeGen/X86/io.llx
deleted file mode 100644
index c5b00d5..0000000
--- a/test/CodeGen/X86/io.llx
+++ /dev/null
@@ -1,21 +0,0 @@
-; RUN: llvm-as < %s | llc -march=x86
-
-implementation
-
-declare int %llvm.readio (int *)
-declare void %llvm.writeio (int, int *)
-
-int %in(int * %p1) {
- %p2 = alloca int
- %i1 = call int %llvm.readio (int* %p1)
- %i2 = call int %llvm.readio (int* %p2)
- %r = add int %i1, %i2
- ret int %r
-}
-
-
-void %out(int* %p) {
- call void(int, int*)* %llvm.writeio (int 1, int * %p)
- ret void
-}
-
diff --git a/test/CodeGen/X86/ioport.llx b/test/CodeGen/X86/ioport.llx
deleted file mode 100644
index 8f09aa2..0000000
--- a/test/CodeGen/X86/ioport.llx
+++ /dev/null
@@ -1,21 +0,0 @@
-; RUN: llvm-as < %s | llc -march=x86
-
-implementation
-
-declare int %llvm.readport (ushort)
-declare void %llvm.writeport (int, ushort)
-
-int %in(ushort %p) {
- %i1 = call int %llvm.readport (ushort 255)
- %i2 = call int %llvm.readport (ushort %p)
- %r = add int %i1, %i2
- ret int %r
-}
-
-
-void %out(ushort %p) {
- call void(int, ushort)* %llvm.writeport (int 1, ushort 255)
- call void(int, ushort)* %llvm.writeport (int 4, ushort %p)
- ret void
-}
-