diff options
author | Derek Schuff <dschuff@chromium.org> | 2016-03-04 17:09:47 -0800 |
---|---|---|
committer | Derek Schuff <dschuff@chromium.org> | 2016-03-09 13:04:18 -0800 |
commit | 1b45938aadd6e03e9210d88436be9c393623fb42 (patch) | |
tree | 24028248c7b9999a8d46bbab913fbe460d76bc46 /test/print | |
parent | e9d98deed872a72a826f78c8525464c446c6f21b (diff) | |
download | binaryen-1b45938aadd6e03e9210d88436be9c393623fb42.tar.gz binaryen-1b45938aadd6e03e9210d88436be9c393623fb42.tar.bz2 binaryen-1b45938aadd6e03e9210d88436be9c393623fb42.zip |
Make initial and max memory sizes be in pages instead of bytes
The AST and everything that uses it treats the values as
pages. Javascript continues to use bytes.
This matches v8 and sexpr-wasm, and the consensus from live discussion
and PR209 in the spec.
Diffstat (limited to 'test/print')
-rw-r--r-- | test/print/min.wast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/print/min.wast b/test/print/min.wast index e38662bb1..1d1f87be6 100644 --- a/test/print/min.wast +++ b/test/print/min.wast @@ -1 +1 @@ -(module(memory 16777216 16777216)(export "floats" $floats)(func $floats(param $f f32)(result f32)(local $t f32)(f32.add(get_local $t)(get_local $f)))(func $neg(param $k i32)(param $p i32)(result f32)(local $n f32)(set_local $n(f32.neg(block $block0(i32.store(get_local $k)(get_local $p))(f32.load(get_local $k))))))(func $littleswitch(param $x i32)(result i32)(block $topmost(tableswitch $switch$0(i32.sub(get_local $x)(i32.const 1))(table(case $switch-case$1)(case $switch-case$2)) (case $switch-case$1)(case $switch-case$1(br $topmost(i32.const 1)))(case $switch-case$2(br $topmost(i32.const 2))))(i32.const 0)))(func $f1(param $i1 i32)(param $i2 i32)(param $i3 i32)(result i32)(block $topmost(get_local $i3)))) +(module(memory 256 256)(export "floats" $floats)(func $floats(param $f f32)(result f32)(local $t f32)(f32.add(get_local $t)(get_local $f)))(func $neg(param $k i32)(param $p i32)(result f32)(local $n f32)(set_local $n(f32.neg(block $block0(i32.store(get_local $k)(get_local $p))(f32.load(get_local $k))))))(func $littleswitch(param $x i32)(result i32)(block $topmost(tableswitch $switch$0(i32.sub(get_local $x)(i32.const 1))(table(case $switch-case$1)(case $switch-case$2)) (case $switch-case$1)(case $switch-case$1(br $topmost(i32.const 1)))(case $switch-case$2(br $topmost(i32.const 2))))(i32.const 0)))(func $f1(param $i1 i32)(param $i2 i32)(param $i3 i32)(result i32)(block $topmost(get_local $i3)))) |