aboutsummaryrefslogtreecommitdiffstats
path: root/src/errorout.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-10-06 08:44:58 +0200
committerTristan Gingold <tgingold@free.fr>2019-10-06 08:44:58 +0200
commita98fae8775c39688e70b526f9e332740b2e380e4 (patch)
treec25938c831a1e31861ca0a358ce8e3e3cb6b03bb /src/errorout.adb
parent89fa9ef3f3d08bcfe11ebfc147ed21fe9bddbc4c (diff)
downloadghdl-a98fae8775c39688e70b526f9e332740b2e380e4.tar.gz
ghdl-a98fae8775c39688e70b526f9e332740b2e380e4.tar.bz2
ghdl-a98fae8775c39688e70b526f9e332740b2e380e4.zip
errorout: reserve eargs for synthesis.
Diffstat (limited to 'src/errorout.adb')
-rw-r--r--src/errorout.adb15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/errorout.adb b/src/errorout.adb
index 8e9edf101..d3eea84c3 100644
--- a/src/errorout.adb
+++ b/src/errorout.adb
@@ -399,4 +399,19 @@ package body Errorout is
begin
return (Kind => Earg_Vhdl_Token, Val_Lang => V);
end Make_Earg_Vhdl_Token;
+
+ function Make_Earg_Synth_Instance (V : Uns32) return Earg_Type is
+ begin
+ return (Kind => Earg_Synth_Instance, Val_Lang => V);
+ end Make_Earg_Synth_Instance;
+
+ function Make_Earg_Synth_Net (V : Uns32) return Earg_Type is
+ begin
+ return (Kind => Earg_Synth_Net, Val_Lang => V);
+ end Make_Earg_Synth_Net;
+
+ function Make_Earg_Synth_Name (V : Uns32) return Earg_Type is
+ begin
+ return (Kind => Earg_Synth_Name, Val_Lang => V);
+ end Make_Earg_Synth_Name;
end Errorout;