mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-07 03:50:34 +01:00
From 774240f85f8bfaa9b94307a74a6771807963231d Mon Sep 17 00:00:00 2001 From: Dmitry Boyarintsev <skalogryz.lists@gmail.com> Date: Mon, 23 Mar 2020 15:24:28 -0400 git-svn-id: branches/wasm@46116 -
14 lines
268 B
Plaintext
14 lines
268 B
Plaintext
(module
|
|
(func $add (result i64)
|
|
i64.const 13
|
|
)
|
|
(func $sub (result i64)
|
|
i64.const 4
|
|
)
|
|
(table 0 anyfunc)
|
|
(func $test (result i64)
|
|
i32.const $sub ;; calling $add
|
|
call_indirect (type 0) ;; type 0 (the only type used in this function)
|
|
)
|
|
)
|