summaryrefslogtreecommitdiff
path: root/test/importedSignCast.asm.js
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2020-10-19 19:56:34 -0500
committerGitHub <noreply@github.com>2020-10-19 17:56:34 -0700
commite0d092b1ad26e7ef4069e31807f7c76a9eb20587 (patch)
tree7108e62429d4a164df2b42f998ba253d26f4588f /test/importedSignCast.asm.js
parent8408cab1fdf67ce9ff331a131f06610909b78e61 (diff)
downloadbinaryen-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/importedSignCast.asm.js')
-rw-r--r--test/importedSignCast.asm.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/importedSignCast.asm.js b/test/importedSignCast.asm.js
deleted file mode 100644
index 60cc99d39..000000000
--- a/test/importedSignCast.asm.js
+++ /dev/null
@@ -1,14 +0,0 @@
-function asm(global, env, buffer) {
- "use asm";
-
- var gm = env._emscripten_glIsTexture;
-
- function func() {
- gm(0) << 24 >> 24;
- }
-
- var FUNCTION_TABLE_a = [ gm ];
-
- return { func: func };
-}
-