912b3912b4
Plus a script to compile/link/run them. Change-Id: Iac8ffcda3a73902261c07a7b4e5d967a19414c75 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1564058 Commit-Queue: Jakob Kummerow <jkummerow@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#60911}
11 lines
295 B
Plaintext
11 lines
295 B
Plaintext
(module
|
|
(func $print (import "" "print") (param i32) (result i32))
|
|
(func $closure (import "" "closure") (result i32))
|
|
(func (export "run") (param $x i32) (param $y i32) (result i32)
|
|
(i32.add
|
|
(call $print (i32.add (local.get $x) (local.get $y)))
|
|
(call $closure)
|
|
)
|
|
)
|
|
)
|