diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-06-12 21:23:02 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-06-12 21:23:02 +0200 |
commit | 4f310c7b94d495500dd3834a7bd5a56e641f36ae (patch) | |
tree | abd5912139307734e452d35b6f113cac590c8fad /src/vhdl/simulate/simul-annotations.adb | |
parent | fd836e03fbd809d870cee9de6bf58bac297af873 (diff) | |
download | ghdl-4f310c7b94d495500dd3834a7bd5a56e641f36ae.tar.gz ghdl-4f310c7b94d495500dd3834a7bd5a56e641f36ae.tar.bz2 ghdl-4f310c7b94d495500dd3834a7bd5a56e641f36ae.zip |
vhdl/simulate: fix regression wrt package instances.
Diffstat (limited to 'src/vhdl/simulate/simul-annotations.adb')
-rw-r--r-- | src/vhdl/simulate/simul-annotations.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vhdl/simulate/simul-annotations.adb b/src/vhdl/simulate/simul-annotations.adb index 53e1fb0f7..ddc2733c8 100644 --- a/src/vhdl/simulate/simul-annotations.adb +++ b/src/vhdl/simulate/simul-annotations.adb @@ -614,7 +614,7 @@ package body Simul.Annotations is if Get_Kind (Decl) = Iir_Kind_Package_Instantiation_Declaration then declare - Bod : constant Iir := Get_Package_Body (Decl); + Bod : constant Iir := Get_Instance_Package_Body (Decl); begin if Bod /= Null_Iir then Set_Info (Bod, Package_Info); |