+ created unit (empty for now) for the llvm-mc assembler writer

git-svn-id: branches/wasm@46495 -
This commit is contained in:
nickysn 2020-08-19 16:02:45 +00:00
parent 2b3b1b4373
commit f04c43f58c
3 changed files with 35 additions and 0 deletions

1
.gitattributes vendored
View File

@ -969,6 +969,7 @@ compiler/verbose.pas svneol=native#text/plain
compiler/version.pas svneol=native#text/plain
compiler/wasm32/aasmcpu.pas svneol=native#text/plain
compiler/wasm32/agbinaryen.pas svneol=native#text/plain
compiler/wasm32/agllvmmc.pas svneol=native#text/plain
compiler/wasm32/agwat.pas svneol=native#text/plain
compiler/wasm32/cgcpu.pas svneol=native#text/plain
compiler/wasm32/cpubase.pas svneol=native#text/plain

View File

@ -0,0 +1,33 @@
{
Copyright (c) 1998-2020 by the Free Pascal team
This unit implements the llvm-mc ("llvm machine code playground")
assembler writer for WebAssembly
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
****************************************************************************
}
unit agllvmmc;
{$i fpcdefs.inc}
interface
implementation
end.

View File

@ -47,6 +47,7 @@ implementation
,agwat
,agbinaryen
,agllvmmc
{**************************************
Assembler Readers