mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-15 07:59:50 +00:00
Make the testcase more challenging
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12892 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a990398102
commit
5deaa7a73d
@ -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
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user