[PATCH 065/188] moving linkinfo from functype to func. Function types

doesn't need to have linking information

From c977bfbda31a1b4c5af4f4a9acfdb8e29d8a782d Mon Sep 17 00:00:00 2001
From: Dmitry Boyarintsev <skalogryz.lists@gmail.com>
Date: Wed, 4 Mar 2020 09:21:45 -0500

git-svn-id: branches/wasm@46061 -
This commit is contained in:
nickysn 2020-08-03 12:59:53 +00:00
parent f513a5556e
commit b7aa824c5a

View File

@ -43,7 +43,6 @@ type
typeIdx : string; // if typeID='' then type is declared from typeDef
// linking information
LinkInfo : TLinkInfo;
constructor Create;
destructor Destroy; override;
function AddResult(tp: byte = 0): TWasmParam;
@ -92,7 +91,8 @@ type
private
locals: TList;
public
id : string;
LinkInfo : TLinkInfo;
id : string;
instr : TWasmInstrList;
functype : TWasmFuncType;