mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
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
This commit is contained in:
parent
5b310c3c8b
commit
472c0ebea4
@ -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
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user