We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1d2eb8 commit fc6a2aaCopy full SHA for fc6a2aa
src/policy/immix/immixspace.rs
@@ -709,16 +709,16 @@ impl<VM: VMBinding> ImmixSpace<VM> {
709
object,
710
semantics,
711
copy_context,
712
- |_new_object| {
+ |new_object| {
713
// post_copy should have set the unlog bit
714
// if `unlog_traced_object` is true.
715
debug_assert!(
716
!self.common.unlog_traced_object
717
|| VM::VMObjectModel::GLOBAL_LOG_BIT_SPEC
718
- .is_unlogged::<VM>(object, Ordering::Relaxed)
+ .is_unlogged::<VM>(new_object, Ordering::Relaxed)
719
);
720
#[cfg(feature = "vo_bit")]
721
- vo_bit::helper::on_object_forwarded::<VM>(_new_object);
+ vo_bit::helper::on_object_forwarded::<VM>(new_object);
722
},
723
)
724
};
0 commit comments