mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
cleanup
This commit is contained in:
parent
b663db56f0
commit
2e41ef68b0
7 changed files with 18 additions and 22 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue