diff options
author | Tristan Gingold <tgingold@free.fr> | 2018-04-25 04:09:37 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2018-04-25 04:27:09 +0200 |
commit | b6d79c2362746b35bf276a610afaa7b9218bf183 (patch) | |
tree | 402466cb571f6e44886bba1e9c2ed9e92e87fc5c /src/ghdldrv | |
parent | 9adcbde96c2f848c6323b1468b04d28de1976c33 (diff) | |
download | ghdl-b6d79c2362746b35bf276a610afaa7b9218bf183.tar.gz ghdl-b6d79c2362746b35bf276a610afaa7b9218bf183.tar.bz2 ghdl-b6d79c2362746b35bf276a610afaa7b9218bf183.zip |
Use specific error message for direction mismatch.
Fix #559
Diffstat (limited to 'src/ghdldrv')
-rw-r--r-- | src/ghdldrv/ghdlrun.adb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ghdldrv/ghdlrun.adb b/src/ghdldrv/ghdlrun.adb index be4619815..2af331f67 100644 --- a/src/ghdldrv/ghdlrun.adb +++ b/src/ghdldrv/ghdlrun.adb @@ -245,8 +245,10 @@ package body Ghdlrun is Def (Trans_Decls.Ghdl_Memcpy, Grt.Lib.Ghdl_Memcpy'Address); - Def (Trans_Decls.Ghdl_Bound_Check_Failed_L1, - Grt.Lib.Ghdl_Bound_Check_Failed_L1'Address); + Def (Trans_Decls.Ghdl_Bound_Check_Failed, + Grt.Lib.Ghdl_Bound_Check_Failed'Address); + Def (Trans_Decls.Ghdl_Direction_Check_Failed, + Grt.Lib.Ghdl_Direction_Check_Failed'Address); Def (Trans_Decls.Ghdl_Malloc0, Grt.Lib.Ghdl_Malloc0'Address); Def (Trans_Decls.Ghdl_Std_Ulogic_To_Boolean_Array, |