mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-14 23:41:30 +00:00
Rename memory instructions; Rework constant handling
This commit is contained in:
@ -219,11 +219,11 @@ F = reinterpret<f64>(25);
|
||||
|
||||
var s: usize;
|
||||
|
||||
current_memory();
|
||||
grow_memory(1); // also necessary for load/store tests below
|
||||
memory.size();
|
||||
memory.grow(1); // also necessary for load/store tests below
|
||||
|
||||
s = current_memory();
|
||||
s = grow_memory(1);
|
||||
s = memory.size();
|
||||
s = memory.grow(1);
|
||||
|
||||
// other
|
||||
|
||||
|
Reference in New Issue
Block a user