diff options
author | Tristan Gingold <tgingold@free.fr> | 2016-07-31 15:49:43 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2016-08-01 20:23:41 +0200 |
commit | 55da78e95df865ba2e2048e6546e4fffcfe020da (patch) | |
tree | 03195d60f0affbc29224c6f955efa2b236ff7398 /src/vhdl/simulate/elaboration.adb | |
parent | c9fdcc4584b8242c595beba67515d16ae0a4dd3b (diff) | |
download | ghdl-55da78e95df865ba2e2048e6546e4fffcfe020da.tar.gz ghdl-55da78e95df865ba2e2048e6546e4fffcfe020da.tar.bz2 ghdl-55da78e95df865ba2e2048e6546e4fffcfe020da.zip |
Rework warnings to have a uniq tag per warning.
Diffstat (limited to 'src/vhdl/simulate/elaboration.adb')
-rw-r--r-- | src/vhdl/simulate/elaboration.adb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vhdl/simulate/elaboration.adb b/src/vhdl/simulate/elaboration.adb index a4919147c..b5f948038 100644 --- a/src/vhdl/simulate/elaboration.adb +++ b/src/vhdl/simulate/elaboration.adb @@ -1891,7 +1891,8 @@ package body Elaboration is -- declaration and architecture body or is bound to a configuration of -- such a design entity. if not Is_Fully_Bound (Conf) then - Warning_Msg_Elab (Disp_Node (Stmt) & " not bound", Stmt); + Warning_Msg_Elab + (Disp_Node (Stmt) & " not bound", Stmt, Warnid_Binding); return; end if; |