summaryrefslogtreecommitdiff
path: root/test/hello_world.fromasm
diff options
context:
space:
mode:
Diffstat (limited to 'test/hello_world.fromasm')
-rw-r--r--test/hello_world.fromasm13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/hello_world.fromasm b/test/hello_world.fromasm
deleted file mode 100644
index 31d36b352..000000000
--- a/test/hello_world.fromasm
+++ /dev/null
@@ -1,13 +0,0 @@
-(module
- (type $i32_i32_=>_i32 (func (param i32 i32) (result i32)))
- (import "env" "memory" (memory $memory 256 256))
- (data (global.get $__memory_base) "hello_world.asm.js")
- (import "env" "__memory_base" (global $__memory_base i32))
- (export "add" (func $add))
- (func $add (; has Stack IR ;) (param $0 i32) (param $1 i32) (result i32)
- (i32.add
- (local.get $0)
- (local.get $1)
- )
- )
-)