aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/netlists-errors.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-10-19 12:26:24 +0200
committerTristan Gingold <tgingold@free.fr>2019-10-19 12:26:24 +0200
commite03c4cb598c99190e870d08c6f1d547b9da046a7 (patch)
tree18f19503ee18bd4f881d10d6b14d9d35558ee760 /src/synth/netlists-errors.ads
parentad1f40be3d78181debb4a3860951e6f1e204a1c3 (diff)
downloadghdl-e03c4cb598c99190e870d08c6f1d547b9da046a7.tar.gz
ghdl-e03c4cb598c99190e870d08c6f1d547b9da046a7.tar.bz2
ghdl-e03c4cb598c99190e870d08c6f1d547b9da046a7.zip
synth: use note messages for memories (instead of warnings).
Diffstat (limited to 'src/synth/netlists-errors.ads')
-rw-r--r--src/synth/netlists-errors.ads4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/synth/netlists-errors.ads b/src/synth/netlists-errors.ads
index d51504393..33765017d 100644
--- a/src/synth/netlists-errors.ads
+++ b/src/synth/netlists-errors.ads
@@ -19,11 +19,13 @@
-- MA 02110-1301, USA.
with Errorout; use Errorout;
+with Netlists.Locations;
package Netlists.Errors is
function "+" (N : Instance) return Earg_Type;
function "+" (N : Net) return Earg_Type;
function "+" (N : Sname) return Earg_Type;
-
+ function "+" (N : Instance) return Location_Type
+ renames Netlists.Locations.Get_Location;
procedure Initialize;
end Netlists.Errors;