add the PtrWrite lowlevel

This commit is contained in:
Folkert 2023-04-23 15:19:46 +02:00
parent c22f33ec8a
commit be31bc5c41
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
7 changed files with 24 additions and 2 deletions

View file

@ -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!(),