From 285084bf0f827af98463a07f520d418b6e999c2a Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Thu, 8 Sep 2016 03:37:39 +0100 Subject: Move Library_To_File_Name from Back_End to Libraries --- src/vhdl/back_end.adb | 38 -------------------------------------- src/vhdl/back_end.ads | 11 ----------- 2 files changed, 49 deletions(-) delete mode 100644 src/vhdl/back_end.adb (limited to 'src/vhdl') diff --git a/src/vhdl/back_end.adb b/src/vhdl/back_end.adb deleted file mode 100644 index 81bc20732..000000000 --- a/src/vhdl/back_end.adb +++ /dev/null @@ -1,38 +0,0 @@ --- Back-end specialization --- Copyright (C) 2002, 2003, 2004, 2005 Tristan Gingold --- --- GHDL 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, or (at your option) any later --- version. --- --- GHDL 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 GHDL; see the file COPYING. If not, write to the Free --- Software Foundation, 59 Temple Place - Suite 330, Boston, MA --- 02111-1307, USA. -with Flags; use Flags; -with Iirs_Utils; use Iirs_Utils; - -package body Back_End is - -- Transform a library identifier into a file name. - -- Very simple mechanism: just add '-simVV.cf' extension, where VV - -- is the version. - function Default_Library_To_File_Name (Library: Iir_Library_Declaration) - return String - is - begin - case Vhdl_Std is - when Vhdl_87 => - return Image_Identifier (Library) & "-obj87.cf"; - when Vhdl_93c | Vhdl_93 | Vhdl_00 | Vhdl_02 => - return Image_Identifier (Library) & "-obj93.cf"; - when Vhdl_08 => - return Image_Identifier (Library) & "-obj08.cf"; - end case; - end Default_Library_To_File_Name; -end Back_End; diff --git a/src/vhdl/back_end.ads b/src/vhdl/back_end.ads index 3ee1e686a..e9db8bd42 100644 --- a/src/vhdl/back_end.ads +++ b/src/vhdl/back_end.ads @@ -18,17 +18,6 @@ with Iirs; use Iirs; package Back_End is - -- Return the name of the library file for LIBRARY. - -- The library file describe the contents of LIBRARY. - function Default_Library_To_File_Name (Library : Iir_Library_Declaration) - return String; - - type Library_To_File_Name_Acc is - access function (Library : Iir_Library_Declaration) return String; - - Library_To_File_Name : Library_To_File_Name_Acc := - Default_Library_To_File_Name'Access; - -- Back-end options. type Parse_Option_Acc is access function (Opt : String) return Boolean; Parse_Option : Parse_Option_Acc := null; -- cgit v1.2.3