remove unnecessary store/deref in keysort error checking

This commit is contained in:
Mark Thom
2018-05-02 21:54:09 -06:00
parent d69bc4ed10
commit df1421dae8

View File

@@ -71,7 +71,7 @@ impl MachineState {
};
}
addr = self.store(self.deref(Addr::HeapCell(l + 1)));
addr = Addr::HeapCell(l + 1);
}
Ok(())