Skip to content

Commit 0c69145

Browse files
committed
Remove traces of evidence
1 parent 464b3f0 commit 0c69145

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
@@ -734,7 +732,7 @@ define void @run_Int(%Neg %f, i64 %argument) {
734732
%functionPointer = load ptr, ptr %functionPointerPointer, !alias.scope !15, !noalias !25
735733

736734
; call
737-
tail call tailcc %Pos %functionPointer(%Object %object, %Evidence 0, i64 %argument, %Stack %stack)
735+
tail call tailcc %Pos %functionPointer(%Object %object, i64 %argument, %Stack %stack)
738736
ret void
739737
}
740738

@@ -749,7 +747,7 @@ define void @run_Pos(%Neg %f, %Pos %argument) {
749747
%functionPointer = load ptr, ptr %functionPointerPointer, !alias.scope !15, !noalias !25
750748

751749
; call
752-
tail call tailcc %Pos %functionPointer(%Object %object, %Evidence 0, %Pos %argument, %Stack %stack)
750+
tail call tailcc %Pos %functionPointer(%Object %object, %Pos %argument, %Stack %stack)
753751
ret void
754752
}
755753

0 commit comments

Comments
 (0)