mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 21:39:07 +00:00
free or reuse unconditionally when value is unique
This commit is contained in:
parent
e3ab023f62
commit
fc3004da58
21 changed files with 381 additions and 69 deletions
|
@ -120,6 +120,7 @@ pub enum LowLevel {
|
|||
PtrCast,
|
||||
PtrStore,
|
||||
PtrLoad,
|
||||
PtrClearTagId,
|
||||
Alloca,
|
||||
RefCountIncRcPtr,
|
||||
RefCountDecRcPtr,
|
||||
|
@ -232,6 +233,7 @@ macro_rules! map_symbol_to_lowlevel {
|
|||
LowLevel::PtrCast => unimplemented!(),
|
||||
LowLevel::PtrStore => unimplemented!(),
|
||||
LowLevel::PtrLoad => unimplemented!(),
|
||||
LowLevel::PtrClearTagId => unimplemented!(),
|
||||
LowLevel::Alloca => unimplemented!(),
|
||||
LowLevel::RefCountIncRcPtr => unimplemented!(),
|
||||
LowLevel::RefCountDecRcPtr=> unimplemented!(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue