Skip to content

Commit 664f418

Browse files
committed
Fixing clippy issues, running ci-test-other with 2 worker threads
1 parent 8e6b075 commit 664f418

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/scripts/ci-test-other.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ if [[ $CHOOSE_TESTS_JL_CONTENT =~ $REGEX_PATTERN ]]; then
6464
fi
6565

6666
echo "-> Run"
67-
ci_run_jl_test $test 1 $moving_feature
67+
ci_run_jl_test $test 2 $moving_feature
6868
fi
6969
done
7070
else

mmtk/src/scanning.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ impl Scanning<JuliaVM> for VMScanning {
132132
CONSERVATIVE_ROOTS.lock().unwrap().insert(obj);
133133
}
134134

135-
if let Some(jmpbuf) = (*eh).eh_ctx.get(0) {
135+
if let Some(jmpbuf) = (*eh).eh_ctx.first() {
136136
for buff in jmpbuf.__jmpbuf {
137137
if let Some(obj) =
138138
is_potential_mmtk_object(Address::from_usize(buff as usize))

0 commit comments

Comments
 (0)