summaryrefslogtreecommitdiff
path: root/test/hello_world.asm.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-10-29 11:57:21 -0700
committerAlon Zakai <alonzakai@gmail.com>2015-10-29 12:43:34 -0700
commit2c9072c4e58f6908d68a401557479b9e74456df2 (patch)
treeed7c7676594cf56502cfa8a36f97b27cece50555 /test/hello_world.asm.js
parent5c839bb462f43f7a356593f537edb08014d0f25f (diff)
downloadbinaryen-2c9072c4e58f6908d68a401557479b9e74456df2.tar.gz
binaryen-2c9072c4e58f6908d68a401557479b9e74456df2.tar.bz2
binaryen-2c9072c4e58f6908d68a401557479b9e74456df2.zip
add test
Diffstat (limited to 'test/hello_world.asm.js')
-rw-r--r--test/hello_world.asm.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/hello_world.asm.js b/test/hello_world.asm.js
new file mode 100644
index 000000000..a41fe1a65
--- /dev/null
+++ b/test/hello_world.asm.js
@@ -0,0 +1,10 @@
+function () {
+ "use asm";
+ function add(x, y) {
+ x = x | 0;
+ y = y | 0;
+ return x + y | 0;
+ }
+ return { add: add };
+}
+