diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2019-01-07 13:24:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-07 13:24:58 -0800 |
commit | 7d94900ded8e2e5ce8ef8ee2687528531d8f2a97 (patch) | |
tree | d8bba13d306b0c5ecba384384e602e6cccc83015 /test/binaryen.js/sieve.js | |
parent | 6f91af190effd7b8a5969314dd4fb3d2ec540524 (diff) | |
download | binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.gz binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.bz2 binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.zip |
Massive renaming (#1855)
Automated renaming according to
https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329.
Diffstat (limited to 'test/binaryen.js/sieve.js')
-rw-r--r-- | test/binaryen.js/sieve.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/binaryen.js/sieve.js b/test/binaryen.js/sieve.js index 4c1e5eefc..8f31e9cd8 100644 --- a/test/binaryen.js/sieve.js +++ b/test/binaryen.js/sieve.js @@ -17,14 +17,14 @@ var body = module.block( module.current_memory(), module.i32.const(65536) ), - module.get_local(0, Binaryen.i32) + module.local.get(0, Binaryen.i32) ), module.drop( module.grow_memory( module.i32.sub( module.i32.div_u( module.i32.add( - module.get_local(0, Binaryen.i32), + module.local.get(0, Binaryen.i32), module.i32.const(65535) ), module.i32.const(65536) @@ -35,24 +35,24 @@ var body = module.block( ) ), // first, clear memory - module.set_local(1, module.i32.const(0)), + module.local.set(1, module.i32.const(0)), module.loop('clear', module.block(null, [ module.i32.store8(0, 1, - module.get_local(1, Binaryen.i32), + module.local.get(1, Binaryen.i32), module.i32.const(0) ), - module.set_local(1, module.i32.add( - module.get_local(1, Binaryen.i32), + module.local.set(1, module.i32.add( + module.local.get(1, Binaryen.i32), module.i32.const(1) )), module.br_if('clear', module.i32.eq( - module.get_local(1, Binaryen.i32), - module.get_local(0, Binaryen.i32) + module.local.get(1, Binaryen.i32), + module.local.get(0, Binaryen.i32) )) ])), // perform the sieve TODO // calculate how many primes there are - module.return(module.get_local(0, Binaryen.i32)) + module.return(module.local.get(0, Binaryen.i32)) ], Binaryen.none ); |