mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-08 20:53:55 +01:00
From 1fa603ea8252b02498eb206f5eec195e2ee64b6e Mon Sep 17 00:00:00 2001 From: Dmitry Boyarintsev <skalogryz.lists@gmail.com> Date: Thu, 5 Mar 2020 09:53:04 -0500 git-svn-id: branches/wasm@46068 -
13 lines
231 B
Plaintext
13 lines
231 B
Plaintext
(module
|
|
(func $anycall (param $i i32)
|
|
unreachable
|
|
)
|
|
|
|
;;.name hello
|
|
;;.forhost
|
|
(func $add (param $lhs i32) (param $rhs i32) (result i32)
|
|
get_local $lhs
|
|
get_local $rhs
|
|
i32.add)
|
|
(export "add" (func $add))
|
|
) |