mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
add the PtrWrite lowlevel
This commit is contained in:
parent
c22f33ec8a
commit
be31bc5c41
7 changed files with 24 additions and 2 deletions
|
@ -115,6 +115,7 @@ pub enum LowLevel {
|
|||
Not,
|
||||
Hash,
|
||||
PtrCast,
|
||||
PtrWrite,
|
||||
RefCountInc,
|
||||
RefCountDec,
|
||||
BoxExpr,
|
||||
|
@ -219,6 +220,7 @@ macro_rules! map_symbol_to_lowlevel {
|
|||
// these are used internally and not tied to a symbol
|
||||
LowLevel::Hash => unimplemented!(),
|
||||
LowLevel::PtrCast => unimplemented!(),
|
||||
LowLevel::PtrWrite => unimplemented!(),
|
||||
LowLevel::RefCountInc => unimplemented!(),
|
||||
LowLevel::RefCountDec => unimplemented!(),
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue