mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 07:47:59 +02:00
[PATCH 072/188] additional test
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 -
This commit is contained in:
parent
e0621577f4
commit
5c02ead33c
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -18979,6 +18979,8 @@ utils/wasmbin/README.md svneol=native#text/plain
|
||||
utils/wasmbin/lebutils.pas svneol=native#text/plain
|
||||
utils/wasmbin/parseutils.pas svneol=native#text/plain
|
||||
utils/wasmbin/testscan/asmsym1.wat svneol=native#text/plain
|
||||
utils/wasmbin/testscan/asmsym2.wat svneol=native#text/plain
|
||||
utils/wasmbin/testscan/asmsym3.wat svneol=native#text/plain
|
||||
utils/wasmbin/wasmbin.pas svneol=native#text/plain
|
||||
utils/wasmbin/wasmbincode.pas svneol=native#text/plain
|
||||
utils/wasmbin/wasmbindebug.pas svneol=native#text/plain
|
||||
|
13
utils/wasmbin/testscan/asmsym2.wat
Normal file
13
utils/wasmbin/testscan/asmsym2.wat
Normal file
@ -0,0 +1,13 @@
|
||||
(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))
|
||||
)
|
17
utils/wasmbin/testscan/asmsym3.wat
Normal file
17
utils/wasmbin/testscan/asmsym3.wat
Normal file
@ -0,0 +1,17 @@
|
||||
(module
|
||||
;;.local
|
||||
;;.undef
|
||||
(func $anycall (param $i i32)
|
||||
unreachable
|
||||
)
|
||||
|
||||
;;.name hello
|
||||
;;.forhost
|
||||
(func $add (param $lhs i32) (param $rhs i32) (result i32)
|
||||
get_local $lhs
|
||||
call $anycall
|
||||
get_local $lhs
|
||||
get_local $rhs
|
||||
i32.add)
|
||||
(export "add" (func $add))
|
||||
)
|
Loading…
Reference in New Issue
Block a user