summaryrefslogtreecommitdiff
path: root/test/noffi_f32.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/noffi_f32.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/noffi_f32.asm.js')
-rw-r--r--test/noffi_f32.asm.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/noffi_f32.asm.js b/test/noffi_f32.asm.js
deleted file mode 100644
index cc7a47972..000000000
--- a/test/noffi_f32.asm.js
+++ /dev/null
@@ -1,21 +0,0 @@
-function(global, env, buffer) {
- "use asm";
- var Math_fround=global.Math.fround;
- var importf=env._importf;
-
- function exportf(a){
- a=Math_fround(a);
- return Math_fround(a+Math_fround(1.0))
- }
- function main(){
- Math_fround(importf(Math_fround(3.4000000953674316)));
- return 0
- }
-
- return{
- main:main,
- exportf:exportf}
-}
-
-;
-