Skip to content

Commit 29aeec8

Browse files
committed
Remove traces of evidence
1 parent 7b34aa6 commit 29aeec8

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

libraries/llvm/io.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,6 @@ void c_tcp_accept_cb(uv_stream_t* server, int status) {
400400
return;
401401
}
402402

403-
// Call the handler with the new client connection
404403
run_Int(unbox(accept_closure->handler), (int64_t)client);
405404
}
406405

libraries/llvm/rts.ll

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
; Run-Time System
22

3-
%Evidence = type i64
4-
53
; Basic types
64

75
%Environment = type ptr
@@ -754,7 +752,7 @@ define void @run_Int(%Neg %f, i64 %argument) {
754752
%functionPointer = load ptr, ptr %functionPointerPointer, !alias.scope !15, !noalias !25
755753

756754
; call
757-
tail call tailcc %Pos %functionPointer(%Object %object, %Evidence 0, i64 %argument, %Stack %stack)
755+
tail call tailcc %Pos %functionPointer(%Object %object, i64 %argument, %Stack %stack)
758756
ret void
759757
}
760758

@@ -769,7 +767,7 @@ define void @run_Pos(%Neg %f, %Pos %argument) {
769767
%functionPointer = load ptr, ptr %functionPointerPointer, !alias.scope !15, !noalias !25
770768

771769
; call
772-
tail call tailcc %Pos %functionPointer(%Object %object, %Evidence 0, %Pos %argument, %Stack %stack)
770+
tail call tailcc %Pos %functionPointer(%Object %object, %Pos %argument, %Stack %stack)
773771
ret void
774772
}
775773

0 commit comments

Comments
 (0)