File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 8e963f63a8d076c8e2f162ba27c49e6cb1dacb96
2
+ refs/heads/master: c42a2d2bfb9cf8b4b44f28942d2d3f2838611c19
Original file line number Diff line number Diff line change @@ -612,7 +612,7 @@ fn decl_glue(ModuleRef llmod, str s) -> ValueRef {
612
612
ret decl_cdecl_fn ( llmod, s, T_fn ( vec ( T_taskptr ( ) ) , T_void ( ) ) ) ;
613
613
}
614
614
615
- fn decl_upcall ( ModuleRef llmod, uint _n) -> ValueRef {
615
+ fn decl_upcall_glue ( ModuleRef llmod, uint _n) -> ValueRef {
616
616
// It doesn't actually matter what type we come up with here, at the
617
617
// moment, as we cast the upcall function pointers to int before passing
618
618
// them to the indirect upcall-invocation glue. But eventually we'd like
@@ -4324,7 +4324,7 @@ fn make_glues(ModuleRef llmod) -> @glue_fns {
4324
4324
T_fn ( vec ( T_taskptr ( ) ) , T_void ( ) ) ) ,
4325
4325
4326
4326
upcall_glues =
4327
- _vec. init_fn [ ValueRef ] ( bind decl_upcall ( llmod, _) ,
4327
+ _vec. init_fn [ ValueRef ] ( bind decl_upcall_glue ( llmod, _) ,
4328
4328
abi. n_upcall_glues as uint ) ,
4329
4329
no_op_type_glue = make_no_op_type_glue ( llmod) ,
4330
4330
memcpy_glue = make_memcpy_glue ( llmod) ,
You can’t perform that action at this time.
0 commit comments