summaryrefslogtreecommitdiff
path: root/test/importedSignCast.asm.js
diff options
context:
space:
mode:
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 };
-}
-