aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-04-13 17:18:07 +0000
committerChris Lattner <sabre@nondot.org>2004-04-13 17:18:07 +0000
commit5deaa7a73d020beb6bbbb6ec1254871f540f2099 (patch)
tree88f1c15d7296439869d113ce53944279c3bf1bec
parenta990398102f25b30b77206a6f8944df1e0ae562a (diff)
Make the testcase more challenging
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12892 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/X86/ioport.llx13
1 files changed, 8 insertions, 5 deletions
diff --git a/test/CodeGen/X86/ioport.llx b/test/CodeGen/X86/ioport.llx
index 37f80d2fb8..8f09aa2104 100644
--- a/test/CodeGen/X86/ioport.llx
+++ b/test/CodeGen/X86/ioport.llx
@@ -5,14 +5,17 @@ implementation
declare int %llvm.readport (ushort)
declare void %llvm.writeport (int, ushort)
-uint %in (uint %p) {
- %i1 = call int(ushort)* %llvm.readport (ushort 255)
- ret uint 5
+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
}
-uint %out (uint %p) {
+void %out(ushort %p) {
call void(int, ushort)* %llvm.writeport (int 1, ushort 255)
- ret uint 5
+ call void(int, ushort)* %llvm.writeport (int 4, ushort %p)
+ ret void
}