Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mmtk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ probe = "0.5"
features = ["is_mmtk_object", "object_pinning", "sticky_immix_non_moving_nursery"]

# Uncomment the following lines to use mmtk-core from the official repository.
git = "https://github.com/mmtk/mmtk-core.git"
rev = "2ad6d36ab3d82be46135a7d76d4fe59cc84620ed"
git = "https://github.com/qinsoon/mmtk-core.git"
rev = "d7a06ced02c588c58a7f6064d474e5de8826f948"

# Uncomment the following line to use mmtk-core from a local repository.
#path = "../../mmtk-core"
Expand Down
2 changes: 1 addition & 1 deletion mmtk/rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.83.0
1.92.0
2 changes: 1 addition & 1 deletion mmtk/src/abi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ impl ObjectClosure {
F2: 'env + FnOnce() -> T,
{
debug_assert!(
self.c_function == THE_UNREGISTERED_CLOSURE_FUNC,
std::ptr::fn_addr_eq(self.c_function, THE_UNREGISTERED_CLOSURE_FUNC),
"set_temporarily_and_run_code is recursively called."
);
self.c_function = Self::c_function_registered::<F1>;
Expand Down
Loading