diff options
author | Tristan Gingold <tgingold@free.fr> | 2018-12-05 18:41:21 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2018-12-05 18:41:21 +0100 |
commit | 402f082e491d47addb070956f93f78ba6d737acc (patch) | |
tree | e84b545bdcdac7ac62a4fc46bfcd4b7c67de8811 /src/vhdl/psl-errors.ads | |
parent | dbd6431ddbcf8c7c1b882aaf0315860353421a49 (diff) | |
download | ghdl-402f082e491d47addb070956f93f78ba6d737acc.tar.gz ghdl-402f082e491d47addb070956f93f78ba6d737acc.tar.bz2 ghdl-402f082e491d47addb070956f93f78ba6d737acc.zip |
Move Error_Msg_Parse from errorout to parse.
Diffstat (limited to 'src/vhdl/psl-errors.ads')
-rw-r--r-- | src/vhdl/psl-errors.ads | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/vhdl/psl-errors.ads b/src/vhdl/psl-errors.ads index 16aae7772..c65443aee 100644 --- a/src/vhdl/psl-errors.ads +++ b/src/vhdl/psl-errors.ads @@ -1,4 +1,3 @@ -with PSL.Nodes; with Types; use Types; with Errorout; use Errorout; with Files_Map; @@ -10,16 +9,6 @@ package PSL.Errors is procedure Error_Kind (Msg : String; N : PSL_Node) renames Errorout.Error_Kind; - procedure Error_Msg_Parse (Msg: String) - renames Errorout.Error_Msg_Parse_1; - - procedure Error_Msg_Parse - (Loc : Location_Type; Msg: String; Args : Earg_Arr := No_Eargs) - renames Errorout.Error_Msg_Parse; - procedure Error_Msg_Sem (Msg: String; Loc: PSL_Node) renames Errorout.Error_Msg_Sem_1; - - function "+" (N : PSL_Node) return Location_Type - renames PSL.Nodes.Get_Location; end PSL.Errors; |