some fixes in response to miri

This commit is contained in:
Mark Thom
2025-03-13 12:33:37 -07:00
committed by Mark Thom
parent 9daf016d63
commit 3dee07f648
5 changed files with 20 additions and 19 deletions

View File

@@ -267,16 +267,6 @@ impl MachineState {
unifier.unify_atom(atom, value);
}
pub fn unify_list(&mut self, l1: usize, value: HeapCellValue) {
let mut unifier = DefaultUnifier::from(self);
unifier.unify_list(l1, value);
}
pub fn unify_partial_string(&mut self, pstr_loc: usize, value: HeapCellValue) {
let mut unifier = DefaultUnifier::from(self);
unifier.unify_partial_string(pstr_loc, value);
}
pub fn unify_char(&mut self, c: char, value: HeapCellValue) {
let mut unifier = DefaultUnifier::from(self);
unifier.unify_char(c, value);