This commit is contained in:
Folkert 2023-04-23 20:02:41 +02:00
parent b663db56f0
commit 2e41ef68b0
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
7 changed files with 18 additions and 22 deletions

View file

@ -1605,12 +1605,10 @@ impl<
self.free_symbol(&Symbol::DEV_TMP4);
}
HigherOrder::ListMap2 { xs, ys } => todo!(),
HigherOrder::ListMap3 { xs, ys, zs } => todo!(),
HigherOrder::ListMap4 { xs, ys, zs, ws } => {
todo!()
}
HigherOrder::ListSortWith { xs } => todo!(),
HigherOrder::ListMap2 { .. } => todo!(),
HigherOrder::ListMap3 { .. } => todo!(),
HigherOrder::ListMap4 { .. } => todo!(),
HigherOrder::ListSortWith { .. } => todo!(),
}
}
@ -2726,8 +2724,8 @@ impl<
) {
let buf = &mut self.buf;
let dst_reg = self.storage_manager.claim_general_reg(buf, &dst);
let src_reg = self.storage_manager.load_to_general_reg(buf, &src);
let dst_reg = self.storage_manager.claim_general_reg(buf, dst);
let src_reg = self.storage_manager.load_to_general_reg(buf, src);
if source.stack_size() == target.stack_size() {
match source.stack_size() {