aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-errors.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-07-18 03:04:21 +0200
committerTristan Gingold <tgingold@free.fr>2019-07-19 18:48:22 +0200
commitc9b3a23bfc75c9b2b74ed88cca97fb5a4e264d7f (patch)
treee9027e5132589e399db264b4f9e8624a7564541f /src/synth/synth-errors.ads
parente812443cafb5284eef69a3aaf44b69192964bf0e (diff)
downloadghdl-c9b3a23bfc75c9b2b74ed88cca97fb5a4e264d7f.tar.gz
ghdl-c9b3a23bfc75c9b2b74ed88cca97fb5a4e264d7f.tar.bz2
ghdl-c9b3a23bfc75c9b2b74ed88cca97fb5a4e264d7f.zip
synth: finalize concurrent assignments (WIP).
Diffstat (limited to 'src/synth/synth-errors.ads')
-rw-r--r--src/synth/synth-errors.ads9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/synth/synth-errors.ads b/src/synth/synth-errors.ads
index ccc48d375..b6b5885c4 100644
--- a/src/synth/synth-errors.ads
+++ b/src/synth/synth-errors.ads
@@ -26,5 +26,12 @@ package Synth.Errors is
Msg : String;
Arg1 : Earg_Type);
procedure Error_Msg_Synth (Loc : Location_Type;
- Msg : String);
+ Msg : String;
+ Args : Earg_Arr := No_Eargs);
+ procedure Warning_Msg_Synth (Loc : Location_Type;
+ Msg : String;
+ Arg1 : Earg_Type);
+ procedure Warning_Msg_Synth (Loc : Location_Type;
+ Msg : String;
+ Args : Earg_Arr := No_Eargs);
end Synth.Errors;