Skip to content

Commit ef2eb78

Browse files
committed
---
yaml --- r: 1332 b: refs/heads/master c: c42a2d2 h: refs/heads/master v: v3
1 parent 1d228b0 commit ef2eb78

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 8e963f63a8d076c8e2f162ba27c49e6cb1dacb96
2+
refs/heads/master: c42a2d2bfb9cf8b4b44f28942d2d3f2838611c19

trunk/src/comp/middle/trans.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ fn decl_glue(ModuleRef llmod, str s) -> ValueRef {
612612
ret decl_cdecl_fn(llmod, s, T_fn(vec(T_taskptr()), T_void()));
613613
}
614614

615-
fn decl_upcall(ModuleRef llmod, uint _n) -> ValueRef {
615+
fn decl_upcall_glue(ModuleRef llmod, uint _n) -> ValueRef {
616616
// It doesn't actually matter what type we come up with here, at the
617617
// moment, as we cast the upcall function pointers to int before passing
618618
// them to the indirect upcall-invocation glue. But eventually we'd like
@@ -4324,7 +4324,7 @@ fn make_glues(ModuleRef llmod) -> @glue_fns {
43244324
T_fn(vec(T_taskptr()), T_void())),
43254325

43264326
upcall_glues =
4327-
_vec.init_fn[ValueRef](bind decl_upcall(llmod, _),
4327+
_vec.init_fn[ValueRef](bind decl_upcall_glue(llmod, _),
43284328
abi.n_upcall_glues as uint),
43294329
no_op_type_glue = make_no_op_type_glue(llmod),
43304330
memcpy_glue = make_memcpy_glue(llmod),

0 commit comments

Comments
 (0)