mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 07:41:12 +00:00
store the layout of a function passed to a lowlevel
This commit is contained in:
parent
27a6a179da
commit
357f93a2ee
6 changed files with 72 additions and 33 deletions
|
@ -211,9 +211,10 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
CallType::LowLevel { op: lowlevel } => {
|
||||
self.build_run_low_level(sym, lowlevel, arguments, layout)
|
||||
}
|
||||
CallType::LowLevel {
|
||||
op: lowlevel,
|
||||
opt_closure_layout: _,
|
||||
} => self.build_run_low_level(sym, lowlevel, arguments, layout),
|
||||
x => Err(format!("the call type, {:?}, is not yet implemented", x)),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue