mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
wasm_interp: tests for ValueStack
This commit is contained in:
parent
3b0a024a56
commit
d038094a51
2 changed files with 55 additions and 6 deletions
|
@ -37,8 +37,8 @@ impl<'a> CallStack<'a> {
|
|||
return_addrs: Vec::with_capacity_in(256, arena),
|
||||
frame_offsets: Vec::with_capacity_in(256, arena),
|
||||
locals_data: Vec::with_capacity_in(16 * 256, arena),
|
||||
is_float: BitVec::new(),
|
||||
is_64: BitVec::new(),
|
||||
is_float: BitVec::with_capacity(256),
|
||||
is_64: BitVec::with_capacity(256),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue