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/use-import-and-drop.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/use-import-and-drop.asm.js')
-rw-r--r-- | test/use-import-and-drop.asm.js | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/test/use-import-and-drop.asm.js b/test/use-import-and-drop.asm.js deleted file mode 100644 index 57688ced9..000000000 --- a/test/use-import-and-drop.asm.js +++ /dev/null @@ -1,19 +0,0 @@ -Module["asm"] = (function(global, env, buffer) { - "use asm"; - var setTempRet0=env.setTempRet0; - var Math_imul = global.Math.imul; - function test1() { - var $b$1 = 0, $x_sroa_0_0_extract_trunc = 0, $2 = 0, $1$1 = 0, $1$0 = 0; - // Here we use setTempRet0 as if it returns i32, and later as if no return value. - // We should *not* expand the return type to f64, as this is not an overloaded return value - return (setTempRet0((((Math_imul($b$1, $x_sroa_0_0_extract_trunc) | 0) + $2 | 0) + $1$1 | $1$1 & 0) | 0), 0 | $1$0 & -1) | 0; - } - function test2() { - setTempRet0(10); - } - return { - }; -}); - - - |