File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -400,7 +400,6 @@ void c_tcp_accept_cb(uv_stream_t* server, int status) {
400
400
return ;
401
401
}
402
402
403
- // Call the handler with the new client connection
404
403
run_Int (unbox (accept_closure -> handler ), (int64_t )client );
405
404
}
406
405
Original file line number Diff line number Diff line change 1
1
; Run-Time System
2
2
3
- %Evidence = type i64
4
-
5
3
; Basic types
6
4
7
5
%Environment = type ptr
@@ -734,7 +732,7 @@ define void @run_Int(%Neg %f, i64 %argument) {
734
732
%functionPointer = load ptr , ptr %functionPointerPointer , !alias.scope !15 , !noalias !25
735
733
736
734
; 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 )
738
736
ret void
739
737
}
740
738
@@ -749,7 +747,7 @@ define void @run_Pos(%Neg %f, %Pos %argument) {
749
747
%functionPointer = load ptr , ptr %functionPointerPointer , !alias.scope !15 , !noalias !25
750
748
751
749
; 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 )
753
751
ret void
754
752
}
755
753
You can’t perform that action at this time.
0 commit comments