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
@@ -754,7 +752,7 @@ define void @run_Int(%Neg %f, i64 %argument) {
754
752
%functionPointer = load ptr , ptr %functionPointerPointer , !alias.scope !15 , !noalias !25
755
753
756
754
; 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 )
758
756
ret void
759
757
}
760
758
@@ -769,7 +767,7 @@ define void @run_Pos(%Neg %f, %Pos %argument) {
769
767
%functionPointer = load ptr , ptr %functionPointerPointer , !alias.scope !15 , !noalias !25
770
768
771
769
; 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 )
773
771
ret void
774
772
}
775
773
You can’t perform that action at this time.
0 commit comments