diff options
author | Sam Clegg <sbc@chromium.org> | 2020-10-19 19:56:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 17:56:34 -0700 |
commit | e0d092b1ad26e7ef4069e31807f7c76a9eb20587 (patch) | |
tree | 7108e62429d4a164df2b42f998ba253d26f4588f /test/hello_world.asm.js | |
parent | 8408cab1fdf67ce9ff331a131f06610909b78e61 (diff) | |
download | binaryen-e0d092b1ad26e7ef4069e31807f7c76a9eb20587.tar.gz binaryen-e0d092b1ad26e7ef4069e31807f7c76a9eb20587.tar.bz2 binaryen-e0d092b1ad26e7ef4069e31807f7c76a9eb20587.zip |
Remove legacy asm.js tests (#3260)
I don't think these files have been referenced since #3042 landed.
Diffstat (limited to 'test/hello_world.asm.js')
-rw-r--r-- | test/hello_world.asm.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/hello_world.asm.js b/test/hello_world.asm.js deleted file mode 100644 index a41fe1a65..000000000 --- a/test/hello_world.asm.js +++ /dev/null @@ -1,10 +0,0 @@ -function () { - "use asm"; - function add(x, y) { - x = x | 0; - y = y | 0; - return x + y | 0; - } - return { add: add }; -} - |