mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 11:48:30 +00:00
Simplify null-writing from commit 8559a85cca
so as to avoid a branch.
This commit is contained in:
parent
07095a3ef9
commit
aa30304328
@ -3264,6 +3264,7 @@ let trans_visitor
|
|||||||
get_element_ptr dst Abi.binding_field_bound_data
|
get_element_ptr dst Abi.binding_field_bound_data
|
||||||
in
|
in
|
||||||
mov dst_item (Il.Cell src_item);
|
mov dst_item (Il.Cell src_item);
|
||||||
|
mov dst_binding zero;
|
||||||
let null_jmp = null_check src_binding in
|
let null_jmp = null_check src_binding in
|
||||||
(* Copy if we have a src binding. *)
|
(* Copy if we have a src binding. *)
|
||||||
(* FIXME (issue #58): this is completely wrong, call
|
(* FIXME (issue #58): this is completely wrong, call
|
||||||
@ -3274,14 +3275,7 @@ let trans_visitor
|
|||||||
dst_binding (Ast.TY_box Ast.TY_int)
|
dst_binding (Ast.TY_box Ast.TY_int)
|
||||||
src_binding (Ast.TY_box Ast.TY_int)
|
src_binding (Ast.TY_box Ast.TY_int)
|
||||||
curr_iso;
|
curr_iso;
|
||||||
let end_jmp = mark() in
|
patch null_jmp
|
||||||
emit (Il.jmp Il.JMP Il.CodeNone);
|
|
||||||
patch null_jmp;
|
|
||||||
(* The src had a null binding, so make sure the dst
|
|
||||||
* does now too.
|
|
||||||
*)
|
|
||||||
mov dst_binding zero;
|
|
||||||
patch end_jmp
|
|
||||||
end
|
end
|
||||||
|
|
||||||
| _ ->
|
| _ ->
|
||||||
|
Loading…
Reference in New Issue
Block a user