diff options
Diffstat (limited to 'translate')
-rw-r--r-- | translate/gcc/dist-common.sh | 6 | ||||
-rw-r--r-- | translate/ghdldrv/ghdllocal.adb | 4 | ||||
-rw-r--r-- | translate/ghdldrv/ghdlprint.adb | 16 |
3 files changed, 13 insertions, 13 deletions
diff --git a/translate/gcc/dist-common.sh b/translate/gcc/dist-common.sh index a9be70c..1f289e3 100644 --- a/translate/gcc/dist-common.sh +++ b/translate/gcc/dist-common.sh @@ -2,9 +2,9 @@ cfiles=" evaluation.adb evaluation.ads -scan.ads -scan.adb -scan-scan_literal.adb +scanner.ads +scanner.adb +scanner-scan_literal.adb back_end.ads back_end.adb files_map.adb diff --git a/translate/ghdldrv/ghdllocal.adb b/translate/ghdldrv/ghdllocal.adb index 31a099d..0341142 100644 --- a/translate/ghdldrv/ghdllocal.adb +++ b/translate/ghdldrv/ghdllocal.adb @@ -25,7 +25,7 @@ with Std_Names; with Back_End; with Disp_Vhdl; with Default_Pathes; -with Scan; +with Scanner; with Sem; with Canon; with Errorout; @@ -1192,7 +1192,7 @@ package body Ghdllocal is end if; raise Option_Error; end if; - Scan.Convert_Identifier; + Scanner.Convert_Identifier; return new String'(Name_Buffer (1 .. Name_Length)); end Convert_Name; diff --git a/translate/ghdldrv/ghdlprint.adb b/translate/ghdldrv/ghdlprint.adb index dfe44ff..3254059 100644 --- a/translate/ghdldrv/ghdlprint.adb +++ b/translate/ghdldrv/ghdlprint.adb @@ -27,7 +27,7 @@ with Libraries; with Errorout; use Errorout; with Iirs; use Iirs; with Tokens; -with Scan; +with Scanner; with Version; with Xrefs; with Ghdlmain; use Ghdlmain; @@ -76,7 +76,7 @@ package body Ghdlprint is procedure PP_Html_File (File : Source_File_Entry) is use Flags; - use Scan; + use Scanner; use Tokens; use Files_Map; use Ada.Characters.Latin_1; @@ -329,8 +329,8 @@ package body Ghdlprint is end if; end Disp_Attribute; begin - Scan.Flag_Comment := True; - Scan.Flag_Newline := True; + Scanner.Flag_Comment := True; + Scanner.Flag_Newline := True; Set_File (File); Buf := Get_File_Source (File); @@ -341,7 +341,7 @@ package body Ghdlprint is Last_Tok := Source_Ptr_Org; Prev_Tok := Tok_Invalid; loop - Scan.Scan; + Scan; Bef_Tok := Get_Token_Position; Aft_Tok := Get_Position; case Current_Token is @@ -848,7 +848,7 @@ package body Ghdlprint is procedure Perform_Action (Cmd : in out Command_Lines; Args : Argument_List) is pragma Unreferenced (Cmd); - use Scan; + use Scanner; use Tokens; use Files_Map; use Ada.Characters.Latin_1; @@ -879,7 +879,7 @@ package body Ghdlprint is -- Scan the content, to compute the number of lines. loop - Scan.Scan; + Scan; exit when Current_Token = Tok_Eof; end loop; File := Get_Current_Source_File; @@ -997,7 +997,7 @@ package body Ghdlprint is Files : Argument_List) is pragma Unreferenced (Cmd); - use Scan; + use Scanner; use Tokens; use Files_Map; use Ada.Characters.Latin_1; |