change from xsi to iso in bimetatrans, correct atomic/1 failure (#343)

This commit is contained in:
Mark Thom
2020-04-14 00:40:51 -06:00
parent 15d18484e3
commit 16a572c250
2 changed files with 10 additions and 4 deletions

View File

@@ -2400,7 +2400,13 @@ impl MachineState {
let d = self.store(self.deref(self[r1]));
match d {
Addr::Con(_) => self.p += 1,
Addr::Char(_) |
Addr::CharCode(_) |
Addr::Con(_) |
Addr::EmptyList |
Addr::Fixnum(_) |
Addr::Float(_) |
Addr::Usize(_) => self.p += 1,
_ => self.fail = true,
};
}