mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-31 09:07:21 +00:00
add alloca as an expression
This commit is contained in:
parent
750234f2de
commit
cdd2aab217
15 changed files with 171 additions and 14 deletions
|
@ -131,6 +131,9 @@ pub enum LowLevel {
|
|||
UnboxExpr,
|
||||
Unreachable,
|
||||
DictPseudoSeed,
|
||||
SetJmp,
|
||||
LongJmp,
|
||||
SetLongJmpBuffer,
|
||||
}
|
||||
|
||||
macro_rules! higher_order {
|
||||
|
@ -241,6 +244,10 @@ macro_rules! map_symbol_to_lowlevel {
|
|||
LowLevel::RefCountDecDataPtr=> unimplemented!(),
|
||||
LowLevel::RefCountIsUnique => unimplemented!(),
|
||||
|
||||
LowLevel::SetJmp => unimplemented!(),
|
||||
LowLevel::LongJmp => unimplemented!(),
|
||||
LowLevel::SetLongJmpBuffer => unimplemented!(),
|
||||
|
||||
// these are not implemented, not sure why
|
||||
LowLevel::StrFromInt => unimplemented!(),
|
||||
LowLevel::StrFromFloat => unimplemented!(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue